Use dcp::file_to_string().
[dcpomatic.git] / src / lib / mid_side_decoder.h
index a4c7e22637fe9809c1488c1b2f23e0a061059861..99821caa463985c12c4067e13cc293f204eabfd6 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "audio_processor.h"
 
+
 class MidSideDecoder : public AudioProcessor
 {
 public:
        std::string name () const;
        std::string id () const;
        int out_channels () const;
-       boost::shared_ptr<AudioProcessor> clone (int) const;
-       boost::shared_ptr<AudioBuffers> run (boost::shared_ptr<const AudioBuffers>, int channels);
+       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<std::string> input_names () const;
+       std::vector<NamedChannel> input_names () const;
 };