Disable YUV->RGB conversion controls with non-YUV sources (#649).
[dcpomatic.git] / src / lib / image_examiner.h
index 792c7b4ebe84a73367f99a60a3f8f884732d34fb..cd8964d0adc7572979b81369b25be41cc1392f46 100644 (file)
@@ -31,10 +31,12 @@ public:
        Frame video_length () const {
                return _video_length;
        }
+       bool yuv () const;
 
 private:
        boost::weak_ptr<const Film> _film;
        boost::shared_ptr<const ImageContent> _image_content;
        boost::optional<dcp::Size> _video_size;
        Frame _video_length;
+       bool _yuv;
 };