diff --git a/Userland/Libraries/LibDSP/Synthesizers.h b/Userland/Libraries/LibDSP/Synthesizers.h index 99b660f20f..45b3a4cdab 100644 --- a/Userland/Libraries/LibDSP/Synthesizers.h +++ b/Userland/Libraries/LibDSP/Synthesizers.h @@ -42,8 +42,6 @@ class Classic : public SynthesizerProcessor { public: Classic(NonnullRefPtr); - static Envelope compute_envelope(RollNote&); - Waveform wave() const { return m_waveform.value(); } private: @@ -57,7 +55,6 @@ private: 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 m_waveform; ProcessorRangeParameter m_attack;