1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 08:37:46 +00:00

Piano: Move to LibDSP's Classic synthesizer

Almost all synthesizer code in Piano is removed in favor of the LibDSP
reimplementation.

This causes some issues that mainly have to do with the way Piano
currently handles talking to LibDSP. Additionally, the sampler is gone
for now and will be reintroduced with future work.
This commit is contained in:
kleines Filmröllchen 2021-09-28 18:01:39 +02:00 committed by Andreas Kling
parent 3ca059da2d
commit b14a64b3c8
14 changed files with 128 additions and 464 deletions

View file

@ -33,8 +33,8 @@ public:
void fill_buffer(Span<Sample>);
void reset();
void set_keyboard_note(int note, Switch note_switch);
void set_should_loop(bool b) { m_should_loop = b; }
void set_note_current_octave(int note, Switch);
void set_octave(Direction);
void set_octave(int octave);
void add_track();