mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 03:37:35 +00:00
Piano+LibDSP: Move Track to LibDSP
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).
This commit is contained in:
parent
125122a9ab
commit
4941cffdd0
29 changed files with 322 additions and 413 deletions
|
@ -50,13 +50,13 @@ private:
|
|||
virtual void process_impl(Signal const&, Signal&) override;
|
||||
|
||||
double volume_from_envelope(Envelope const&) const;
|
||||
double wave_position(u8 note);
|
||||
double wave_position(u32 sample_time, u8 note);
|
||||
double samples_per_cycle(u8 note) const;
|
||||
double sin_position(u8 note) const;
|
||||
double triangle_position(u8 note) const;
|
||||
double square_position(u8 note) const;
|
||||
double saw_position(u8 note) const;
|
||||
double noise_position(u8 note);
|
||||
double sin_position(u32 sample_time, u8 note) const;
|
||||
double triangle_position(u32 sample_time, u8 note) const;
|
||||
double square_position(u32 sample_time, u8 note) const;
|
||||
double saw_position(u32 sample_time, u8 note) const;
|
||||
double noise_position(u32 sample_time, u8 note);
|
||||
double get_random_from_seed(u64 note);
|
||||
|
||||
ProcessorEnumParameter<Waveform> m_waveform;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue