Barely-functioning GL playback with new arrangement.
[dcpomatic.git] / src / lib / video_mxf_examiner.h
index 43e82da4d2e12e33dcf097bc28837440cd9710d5..ec2933c2742a6801a38a7af8cf010b5b47d89f10 100644 (file)
@@ -29,13 +29,19 @@ namespace dcp {
 class VideoMXFExaminer : public VideoExaminer
 {
 public:
-       VideoMXFExaminer (boost::shared_ptr<const VideoMXFContent>);
+       explicit VideoMXFExaminer (boost::shared_ptr<const VideoMXFContent>);
 
+       bool has_video () const {
+               return true;
+       }
        boost::optional<double> video_frame_rate () const;
        dcp::Size video_size () const;
        Frame video_length () const;
        boost::optional<double> sample_aspect_ratio () const;
        bool yuv () const;
+       VideoRange range () const {
+               return VIDEO_RANGE_FULL;
+       }
 
 private:
        boost::shared_ptr<dcp::PictureAsset> _asset;