X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fupmixer_a.h;h=b357616ef0038e758b8ac0d6a17fccb1e4fe0c75;hb=c162f9d8b127f56b8da46b83908000611033e6a5;hp=de02a8d959d7f09d4d5f070b60bd58c6341ac438;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/upmixer_a.h b/src/lib/upmixer_a.h index de02a8d95..b357616ef 100644 --- a/src/lib/upmixer_a.h +++ b/src/lib/upmixer_a.h @@ -18,29 +18,32 @@ */ + /** @file src/lib/upmixer_a.h * @brief UpmixerA class. */ + #include "audio_processor.h" #include "audio_filter.h" + /** @class UpmixerA * @brief Stereo to 5.1 upmixer algorithm by Gérald Maruccia. */ class UpmixerA : public AudioProcessor { public: - UpmixerA (int sampling_rate); + explicit UpmixerA (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); + std::shared_ptr clone (int) const; + std::shared_ptr run (std::shared_ptr, int channels); void flush (); void make_audio_mapping_default (AudioMapping& mapping) const; - std::vector input_names () const; + std::vector input_names () const; private: BandPassAudioFilter _left;