New DCPTime/ContentTime types.
[dcpomatic.git] / src / lib / image_decoder.h
index 1f5f0b9d2310c463ea3f9bf4124b01a7b63c8d0c..f4d81dfb507a5ef545c0f573542904472d023956 100644 (file)
@@ -34,14 +34,13 @@ public:
                return _image_content;
        }
 
-       /* Decoder */
-
-       void pass ();
-       void seek (Time, bool);
-       bool done () const;
+       void seek (ContentTime, bool);
 
 private:
+       bool pass ();
+       
        boost::shared_ptr<const ImageContent> _image_content;
        boost::shared_ptr<Image> _image;
+       ContentTime _video_position;
 };