1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:37:35 +00:00

LibDSP: Make the note frequencies an AK::Array instead of a C array

This was a leftover from the early days of Piano, and there's no reason
to leave it that way especially if we want to use more complex
collection APIs in the future.
This commit is contained in:
kleines Filmröllchen 2022-05-11 21:59:49 +02:00 committed by Linus Groh
parent bcb331b862
commit f23aea0c4b
5 changed files with 6 additions and 7 deletions

View file

@ -16,7 +16,7 @@ Sample AudioClip::sample_at(u32 time)
void NoteClip::set_note(RollNote note)
{
VERIFY(note.pitch >= 0 && note.pitch < note_count);
VERIFY(note.pitch >= 0 && note.pitch < note_frequencies.size());
VERIFY(note.off_sample < m_length);
VERIFY(note.length() >= 2);