X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fvideo_mxf_examiner.h;h=ec2933c2742a6801a38a7af8cf010b5b47d89f10;hb=0a3f387f5d39da2ca38ec90a9593c1b598040dd7;hp=3a0189a2fc3bc2a190e74efee52afd35bd6e5f45;hpb=c6871fe8617b3de03662b7630355059393bf8043;p=dcpomatic.git diff --git a/src/lib/video_mxf_examiner.h b/src/lib/video_mxf_examiner.h index 3a0189a2f..ec2933c27 100644 --- a/src/lib/video_mxf_examiner.h +++ b/src/lib/video_mxf_examiner.h @@ -31,11 +31,17 @@ class VideoMXFExaminer : public VideoExaminer public: explicit VideoMXFExaminer (boost::shared_ptr); + bool has_video () const { + return true; + } boost::optional video_frame_rate () const; dcp::Size video_size () const; Frame video_length () const; boost::optional sample_aspect_ratio () const; bool yuv () const; + VideoRange range () const { + return VIDEO_RANGE_FULL; + } private: boost::shared_ptr _asset;