Runs.
[dcpomatic.git] / src / lib / imagemagick_decoder.h
index cfcf4b4f6d130d8b2ea2cfeedf0362f59bda4daa..b04bd88b10bba16d893769e0991656331b1c5da8 100644 (file)
@@ -23,19 +23,21 @@ namespace Magick {
        class Image;
 }
 
+class ImageMagickContent;
+
 class ImageMagickDecoder : public VideoDecoder
 {
 public:
-       ImageMagickDecoder (boost::shared_ptr<Film>, boost::shared_ptr<const DecodeOptions>, 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;
 
-       SourceFrame length () const {
+       ContentVideoFrame video_length () const {
                /* We don't know */
                return 0;
        }
@@ -52,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 {
@@ -79,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;
 };