summaryrefslogtreecommitdiff
path: root/src/lib/video_mxf_decoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-01 23:58:47 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-01 23:58:47 +0100
commit368832f2ff6837d9029020b41fb97fb148c3be31 (patch)
tree7653ce59c8e5de15d746897efa7640f33a70a32f /src/lib/video_mxf_decoder.h
parent2da8a38e3cc9bebfe324a682d8e4da2e8856676a (diff)
Use new libdcp reader interface.
Diffstat (limited to 'src/lib/video_mxf_decoder.h')
-rw-r--r--src/lib/video_mxf_decoder.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/video_mxf_decoder.h b/src/lib/video_mxf_decoder.h
index 0432ad885..34388ac82 100644
--- a/src/lib/video_mxf_decoder.h
+++ b/src/lib/video_mxf_decoder.h
@@ -20,6 +20,11 @@
#include "decoder.h"
+namespace dcp {
+ class MonoPictureAssetReader;
+ class StereoPictureAssetReader;
+}
+
class VideoMXFContent;
class Log;
@@ -35,4 +40,8 @@ private:
boost::shared_ptr<const VideoMXFContent> _content;
/** Time of next thing to return from pass */
ContentTime _next;
+
+ boost::shared_ptr<dcp::MonoPictureAssetReader> _mono_reader;
+ boost::shared_ptr<dcp::StereoPictureAssetReader> _stereo_reader;
+ dcp::Size _size;
};