Stop crashing when running the hints check on films with silent/black gaps.
[dcpomatic.git] / src / lib / video_mxf_examiner.h
index 3a0189a2fc3bc2a190e74efee52afd35bd6e5f45..ec2933c2742a6801a38a7af8cf010b5b47d89f10 100644 (file)
@@ -31,11 +31,17 @@ class VideoMXFExaminer : public VideoExaminer
 public:
        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;