Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 330d59ed858742a7c2d2785af1ca28e935dd345f..78313df0f332ec42ab06631f188ae737fe66ca3e 100644 (file)
@@ -28,15 +28,16 @@ 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;