Factor out checking of a single picture frame's hash.
[dcpomatic.git] / src / lib / magick_image_proxy.h
index 7d2251aebb491408aa3096eef8a8bb227943f62c..8fc00b0de31131dfd84a7f166f1c0da680112747 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -18,6 +18,9 @@
 */
 
 #include "image_proxy.h"
+#include <Magick++.h>
+#include <boost/thread/mutex.hpp>
+#include <boost/filesystem.hpp>
 
 class MagickImageProxy : public ImageProxy
 {
@@ -29,8 +32,10 @@ public:
        void add_metadata (xmlpp::Node *) const;
        void send_binary (boost::shared_ptr<Socket>) const;
        bool same (boost::shared_ptr<const ImageProxy> other) const;
+       AVPixelFormat pixel_format () const;
 
-private:       
+private:
        Magick::Blob _blob;
        mutable boost::shared_ptr<Image> _image;
+       mutable boost::mutex _mutex;
 };