Add a log message and actually use device_for_write().
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 0432ad885e0ad9554bfd3082b94979a32050836c..78313df0f332ec42ab06631f188ae737fe66ca3e 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>);
+
+       bool pass ();
+       void seek (dcpomatic::ContentTime t, bool accurate);
 
 private:
-       bool pass (PassReason, bool accurate);
-       void seek (ContentTime t, bool accurate);
 
        boost::shared_ptr<const VideoMXFContent> _content;
        /** Time of next thing to return from pass */
-       ContentTime _next;
+       dcpomatic::ContentTime _next;
+
+       boost::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
+       boost::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
+       dcp::Size _size;
 };