diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-04-09 13:58:27 +0200 |
| commit | b915348a8288d68e2ff114fb3dd89ad22e699969 (patch) | |
| tree | 46ce54a62bef93a544ada376d2c42ad4ab50f596 /src/lib/upmixer_b.h | |
| parent | c80f7a440de73dead499764b4073d39d54c68b9f (diff) | |
Add some missing override labels.
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; |
