mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
4941cffdd0
This is a tangly commit and it fixes all the bugs that a plain move would have caused (i.e. we need to touch other logic which had wrong assumptions).
34 lines
796 B
C++
34 lines
796 B
C++
/*
|
|
* 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;
|
|
});
|
|
}
|
|
|
|
}
|