Take ISDCF metadata from templates.
[dcpomatic.git] / src / lib / decoder.h
index f70eca8b3fb55a41ca8d627b9e141f3728abf0d5..d87ff610ac47d3a9eae2eb795ac072a397c26b3f 100644 (file)
@@ -47,8 +47,11 @@ public:
        boost::shared_ptr<AudioDecoder> audio;
        boost::shared_ptr<SubtitleDecoder> subtitle;
 
-       virtual void pass () = 0;
-       virtual void seek (ContentTime time, bool accurate) = 0;
+       /** Do some decoding and perhaps emit video, audio or subtitle data.
+        *  @return true if this decoder will emit no more data unless a seek() happens.
+        */
+       virtual bool pass () = 0;
+       virtual void seek (ContentTime time, bool accurate);
 
        ContentTime position () const;
 };