Clean up audio passing round a bit.
[dcpomatic.git] / src / lib / decoder.h
index 8a04ec9f2d77d4a553c80cf8f830d391bd383ec5..85b256f5bbe592629b8dad0c2b9c12396816aa73 100644 (file)
@@ -30,6 +30,7 @@
 #include <boost/shared_ptr.hpp>
 #include <sigc++/sigc++.h>
 #include "util.h"
+#include "stream.h"
 
 class Job;
 class FilmState;
@@ -79,6 +80,17 @@ public:
        int last_video_frame () const {
                return _video_frame;
        }
+
+       virtual std::vector<Stream> audio_streams () const {
+               return std::vector<Stream> ();
+       }
+       
+       virtual std::vector<Stream> subtitle_streams () const {
+               return std::vector<Stream> ();
+       }
+
+       virtual void set_audio_stream (Stream s) {}
+       virtual void set_subtitle_stream (Stream s) {}
        
        /** Emitted when a video frame is ready.
         *  First parameter is the frame.
@@ -87,11 +99,8 @@ public:
         */
        sigc::signal<void, boost::shared_ptr<Image>, int, boost::shared_ptr<Subtitle> > Video;
 
-       /** Emitted when some audio data is ready.
-        *  First parameter is the interleaved sample data, format is given in the FilmState.
-        *  Second parameter is the size of the data.
-        */
-       sigc::signal<void, uint8_t *, int> Audio;
+       /** Emitted when some audio data is ready */
+       sigc::signal<void, boost::shared_ptr<AudioBuffers> > Audio;
        
 protected:
        /** perform a single pass at our content */
@@ -125,6 +134,8 @@ protected:
 
 private:
        void setup_video_filters ();
+       void emit_audio (uint8_t* data, int size);
+       int bytes_per_audio_sample () const;
        
        /** last video frame to be processed */
        int _video_frame;