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_a.h | |
| parent | c80f7a440de73dead499764b4073d39d54c68b9f (diff) | |
Add some missing override labels.
Diffstat (limited to 'src/lib/upmixer_a.h')
| -rw-r--r-- | src/lib/upmixer_a.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h index b357616ef..9e364dcc9 100644 --- a/src/lib/upmixer_a.h +++ b/src/lib/upmixer_a.h @@ -36,14 +36,14 @@ class UpmixerA : public AudioProcessor public: explicit UpmixerA (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: BandPassAudioFilter _left; |
