]> git.sesse.net Git - casparcg/blobdiff - core/consumer/frame_consumer.h
* Removed use of c++14 feature only supported by Visual Studio 2015 and not by gcc...
[casparcg] / core / consumer / frame_consumer.h
index 5390a79c2326b7b8029c40c71a20d5eefa536db7..e09e4edcfe263f8a36c5a22359b831fe3fab445b 100644 (file)
@@ -55,7 +55,7 @@ public:
        // Methods
 
        virtual std::future<bool>                               send(const_frame frame) = 0;
-       virtual void                                                    initialize(const video_format_desc& format_desc, int channel_index) = 0;
+       virtual void                                                    initialize(const video_format_desc& format_desc, const audio_channel_layout& channel_layout, int channel_index) = 0;
        
        // monitor::observable
 
@@ -99,4 +99,6 @@ private:
        spl::shared_ptr<impl> impl_;
 };
 
+void destroy_consumers_synchronously();
+
 }}