Runs.
[dcpomatic.git] / src / lib / imagemagick_decoder.h
index f636191f2e3bdbb6da13d799c13a496cabbd6885..b04bd88b10bba16d893769e0991656331b1c5da8 100644 (file)
@@ -23,17 +23,24 @@ namespace Magick {
        class Image;
 }
 
+class ImageMagickContent;
+
 class ImageMagickDecoder : public VideoDecoder
 {
 public:
-       ImageMagickDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const Options>, Job *);
+       ImageMagickDecoder (boost::shared_ptr<const Film>, boost::shared_ptr<ImageMagickContent>, DecodeOptions);
 
        float frames_per_second () const {
                /* We don't know */
                return 0;
        }
 
-       Size native_size () const;
+       libdcp::Size native_size () const;
+
+       ContentVideoFrame video_length () const {
+               /* We don't know */
+               return 0;
+       }
 
        int audio_channels () const {
                return 0;
@@ -47,12 +54,11 @@ public:
                return 0;
        }
 
-       bool has_subtitles () const {
-               return false;
-       }
+       bool seek (double);
+       bool seek_to_last ();
+       bool pass ();
 
 protected:
-       bool pass ();
        PixelFormat pixel_format () const;
 
        int time_base_numerator () const {
@@ -74,6 +80,8 @@ protected:
        }
 
 private:
-       std::list<std::string> _files;
-       std::list<std::string>::iterator _iter;
+       void film_changed (Film::Property);
+
+       boost::shared_ptr<ImageMagickContent> _imagemagick_content;
+       ContentVideoFrame _position;
 };