1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:17:45 +00:00

LibDSP: Introduce the Keyboard

This is a class for handling user MIDI input, which is combined by the
Track with roll note data if applicable.
This commit is contained in:
kleines Filmröllchen 2022-05-13 10:13:14 +02:00 committed by Linus Groh
parent a54b681149
commit 37b340a698
4 changed files with 128 additions and 0 deletions

View file

@ -196,6 +196,7 @@ constexpr Array<double, 84> note_frequencies = {
3951.0664100489994,
};
constexpr size_t const notes_per_octave = 12;
constexpr double const middle_c = note_frequencies[36];
}