Re-work idle handling from previous commit.
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 3cbdcfb2dffbc5e4316bffc725243ceba76ebc84..78313df0f332ec42ab06631f188ae737fe66ca3e 100644 (file)
@@ -28,16 +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 (ContentTime t, bool accurate);
+       void seek (dcpomatic::ContentTime t, bool accurate);
 
 private:
 
        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;