]> git.sesse.net Git - casparcg/blobdiff - modules/ffmpeg/producer/audio/audio_decoder.h
Removed audio_channel_layout from audio_decoder.
[casparcg] / modules / ffmpeg / producer / audio / audio_decoder.h
index a1ed375067d2977021eb288b6854232250e321db..93cbcccb947383beacc92a0e255ec1ef450a8139 100644 (file)
@@ -38,7 +38,7 @@ namespace caspar { namespace ffmpeg {
 class audio_decoder : public boost::noncopyable
 {
 public:
-       explicit audio_decoder(class input& input, const core::video_format_desc& format_desc, const std::wstring& channel_layout_spec, int audio_stream_index = 0);
+       explicit audio_decoder(class input& input, const core::video_format_desc& format_desc, int audio_stream_index = 0);
        
        audio_decoder(audio_decoder&& other);
        audio_decoder& operator=(audio_decoder&& other);
@@ -46,7 +46,6 @@ public:
        std::shared_ptr<AVFrame> operator()();
 
        uint32_t nb_frames() const;
-       const core::audio_channel_layout& channel_layout() const;
        
        std::wstring print() const;