Factor out checking of a single picture frame's hash.
[dcpomatic.git] / src / lib / image_decoder.h
index 0453f7e7e8c6b447947bc0f61cf8e51ba68fe1a6..e2de56acb9b1789f5e0e37a584dc30b88acc8625 100644 (file)
 
 #include "video_decoder.h"
 
-namespace Magick {
-       class Image;
-}
-
 class ImageContent;
 
 class ImageDecoder : public VideoDecoder
@@ -35,11 +31,10 @@ public:
        }
 
 private:
-       bool pass (PassReason);
+       bool pass (PassReason, bool);
        void seek (ContentTime, bool);
-       
+
        boost::shared_ptr<const ImageContent> _image_content;
        boost::shared_ptr<ImageProxy> _image;
        Frame _video_position;
 };
-