blob: 1a3464b863fafb26b78968db54e426046aad0169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/*
* Copyright (c) 2021, kleines Filmröllchen <filmroellchen@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "Clip.h"
namespace DSP {
Sample AudioClip::sample_at(u32 time)
{
VERIFY(time < m_length);
return m_samples[time];
}
void NoteClip::set_note(RollNote note)
{
m_notes.remove_all_matching([&](auto const& other) {
return other.pitch == note.pitch && other.overlaps_with(note);
});
m_notes.append(note);
}
void NoteClip::remove_note(RollNote note)
{
// FIXME: See header; this could be much faster with a better datastructure.
m_notes.remove_first_matching([note](auto const& element) {
return element.on_sample == note.on_sample && element.off_sample == note.off_sample && element.pitch == note.pitch;
});
}
}
|