X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_decoder.h;h=78313df0f332ec42ab06631f188ae737fe66ca3e;hb=4d11fe7cea71b0564df9a21a3cc706509d12b0d1;hp=0432ad885e0ad9554bfd3082b94979a32050836c;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h index 0432ad885..78313df0f 100644 --- a/src/lib/video_mxf_decoder.h +++ b/src/lib/video_mxf_decoder.h @@ -19,6 +19,8 @@ */ #include "decoder.h" +#include +#include class VideoMXFContent; class Log; @@ -26,13 +28,18 @@ class Log; class VideoMXFDecoder : public Decoder { public: - VideoMXFDecoder (boost::shared_ptr, boost::shared_ptr log); + VideoMXFDecoder (boost::shared_ptr film, boost::shared_ptr); + + bool pass (); + void seek (dcpomatic::ContentTime t, bool accurate); private: - bool pass (PassReason, bool accurate); - void seek (ContentTime t, bool accurate); boost::shared_ptr _content; /** Time of next thing to return from pass */ - ContentTime _next; + dcpomatic::ContentTime _next; + + boost::shared_ptr _mono_reader; + boost::shared_ptr _stereo_reader; + dcp::Size _size; };