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/mid_side_decoder.h | |
| parent | f1ea52e954cc466d70b5d5ee530a7af5d41b9cc6 (diff) | |
Missing overrides.
Diffstat (limited to 'src/lib/mid_side_decoder.h')
| -rw-r--r-- | src/lib/mid_side_decoder.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/mid_side_decoder.h b/src/lib/mid_side_decoder.h index 99821caa4..857975478 100644 --- a/src/lib/mid_side_decoder.h +++ b/src/lib/mid_side_decoder.h @@ -25,11 +25,11 @@ class MidSideDecoder : public AudioProcessor { public: - 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 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 make_audio_mapping_default (AudioMapping& mapping) const override; + std::vector<NamedChannel> input_names () const override; }; |
