Add an output audio matrix (#1482).
[dcpomatic.git] / src / lib / video_mxf_decoder.h
index 6b5b328ac09aebe0956ec705b8bd5ba046df5fde..78313df0f332ec42ab06631f188ae737fe66ca3e 100644 (file)
@@ -28,16 +28,16 @@ class Log;
 class VideoMXFDecoder : public Decoder
 {
 public:
-       VideoMXFDecoder (boost::shared_ptr<const VideoMXFContent>);
+       VideoMXFDecoder (boost::shared_ptr<const Film> film, boost::shared_ptr<const VideoMXFContent>);
 
-       bool pass (boost::shared_ptr<const Film> film);
-       void seek (boost::shared_ptr<const Film> film, ContentTime t, bool accurate);
+       bool pass ();
+       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;