Try to move J2K bandwidth and colour LUT to be per-film (#23).
[dcpomatic.git] / src / lib / imagemagick_decoder.h
index de49c1b566b6ef0a36ae2bb44c0e05d77a65da6c..6f426f308058a403330af912baa0acdc7d58b281 100644 (file)
@@ -26,7 +26,7 @@ namespace Magick {
 class ImageMagickDecoder : public VideoDecoder
 {
 public:
-       ImageMagickDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const Options>, Job *);
+       ImageMagickDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const DecodeOptions>, Job *);
 
        float frames_per_second () const {
                /* We don't know */
@@ -56,6 +56,9 @@ public:
                return false;
        }
 
+       bool seek (double);
+       bool seek_to_last ();
+
 protected:
        bool pass ();
        PixelFormat pixel_format () const;
@@ -79,6 +82,8 @@ protected:
        }
 
 private:
+       void film_changed (Film::Property);
+       
        std::list<std::string> _files;
        std::list<std::string>::iterator _iter;
 };