X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fimage_examiner.h;h=ca8ecf9c8c7a013dfbd91557c5357faa68997175;hp=281b002f33572c1708dfef7f42297d8b14c9a31e;hb=ce17803bf356f3e796dccde43b4cc3656609e7fc;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05 diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index 281b002f3..ca8ecf9c8 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -27,12 +27,18 @@ class ImageExaminer : public VideoExaminer public: ImageExaminer (boost::shared_ptr, boost::shared_ptr, boost::shared_ptr); + bool has_video () const { + return true; + } boost::optional video_frame_rate () const; dcp::Size video_size () const; Frame video_length () const { return _video_length; } bool yuv () const; + VideoRange range () const { + return VIDEO_RANGE_FULL; + } private: boost::weak_ptr _film;