Just mark image dirty on reset_metadata() rather than working it out from value changes.
[dcpomatic.git] / src / lib / player_video.h
index 5e579a705423d4f5b75f304a33a6df974a59e90a..4b1a84e01f838b0d5e887a7b724132193ba262fb 100644 (file)
@@ -129,14 +129,7 @@ private:
 
        mutable boost::mutex _mutex;
        mutable boost::shared_ptr<Image> _image;
-       /** _crop that was used to make _image */
-       mutable Crop _image_crop;
-       /** _inter_size that was used to make _image */
-       mutable dcp::Size _image_inter_size;
-       /** _out_size that was used to make _image */
-       mutable dcp::Size _image_out_size;
-       /** _fade that was used to make _image */
-       mutable boost::optional<double> _image_fade;
+       mutable bool _image_dirty;
 };
 
 #endif