Incomplete encryption of private keys.
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 0432ad885e0ad9554bfd3082b94979a32050836c..3e3760d97f7e75963e5df014b55ee79d7cbd4d38 100644 (file)
@@ -19,6 +19,8 @@
 */
 
 #include "decoder.h"
+#include <dcp/mono_picture_asset_reader.h>
+#include <dcp/stereo_picture_asset_reader.h>
 
 class VideoMXFContent;
 class Log;
@@ -26,13 +28,18 @@ class Log;
 class VideoMXFDecoder : public Decoder
 {
 public:
-       VideoMXFDecoder (boost::shared_ptr<const VideoMXFContent>, boost::shared_ptr<Log> log);
+       VideoMXFDecoder (boost::shared_ptr<const Film> film, boost::shared_ptr<const VideoMXFContent>);
 
-private:
-       bool pass (PassReason, bool accurate);
+       bool pass ();
        void seek (ContentTime t, bool accurate);
 
+private:
+
        boost::shared_ptr<const VideoMXFContent> _content;
        /** Time of next thing to return from pass */
        ContentTime _next;
+
+       boost::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
+       boost::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
+       dcp::Size _size;
 };