diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-02 20:37:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-12-03 21:19:28 +0100 |
| commit | d2807cacb97dd6dd9b519af7d697a2a10e39564e (patch) | |
| tree | 8eb77333c7a399084fc435ac4efc3d542037c259 /src/lib/upmixer_b.h | |
| parent | f1ea52e954cc466d70b5d5ee530a7af5d41b9cc6 (diff) | |
Missing overrides.
Diffstat (limited to 'src/lib/upmixer_b.h')
| -rw-r--r-- | src/lib/upmixer_b.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/upmixer_b.h b/src/lib/upmixer_b.h index fc30e2a28..611ed6a90 100644 --- a/src/lib/upmixer_b.h +++ b/src/lib/upmixer_b.h @@ -34,14 +34,14 @@ class UpmixerB : public AudioProcessor public: explicit UpmixerB (int sampling_rate); - std::string name () const; - std::string id () const; - int out_channels () const; - std::shared_ptr<AudioProcessor> clone (int) const; - std::shared_ptr<AudioBuffers> run (std::shared_ptr<const AudioBuffers>, int channels); - void flush (); - void make_audio_mapping_default (AudioMapping& mapping) const; - std::vector<NamedChannel> input_names () const; + std::string name () const override; + std::string id () const override; + int out_channels () const override; + std::shared_ptr<AudioProcessor> clone (int) const override; + std::shared_ptr<AudioBuffers> run (std::shared_ptr<const AudioBuffers>, int channels) override; + void flush () override; + void make_audio_mapping_default (AudioMapping& mapping) const override; + std::vector<NamedChannel> input_names () const override; private: LowPassAudioFilter _lfe; |
