X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fupmixer_b.h;h=611ed6a90fbdb61de4dd2318d5d0f3f5ed6ea521;hb=1a721b82d4094c00ee89574e17c58c23c0de8cdd;hp=47b4fadef1c9ef440a087d572e91b432f9539ed6;hpb=c6871fe8617b3de03662b7630355059393bf8043;p=dcpomatic.git diff --git a/src/lib/upmixer_b.h b/src/lib/upmixer_b.h index 47b4fadef..611ed6a90 100644 --- a/src/lib/upmixer_b.h +++ b/src/lib/upmixer_b.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2015 Carl Hetherington + Copyright (C) 2015-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,29 +18,33 @@ */ + /** @file src/lib/upmixer_b.h * @brief UpmixerB class. */ + #include "audio_processor.h" #include "audio_filter.h" #include "audio_delay.h" + class UpmixerB : public AudioProcessor { public: explicit UpmixerB (int sampling_rate); - std::string name () const; - std::string id () const; - int out_channels () const; - boost::shared_ptr clone (int) const; - boost::shared_ptr run (boost::shared_ptr, int channels); - void flush (); - void make_audio_mapping_default (AudioMapping& mapping) const; - std::vector input_names () const; + std::string name () const override; + std::string id () const override; + int out_channels () const override; + std::shared_ptr clone (int) const override; + std::shared_ptr run (std::shared_ptr, int channels) override; + void flush () override; + void make_audio_mapping_default (AudioMapping& mapping) const override; + std::vector input_names () const override; private: LowPassAudioFilter _lfe; AudioDelay _delay; }; +