Re-add missing audio mapping in butler for preview.
[dcpomatic.git] / src / lib / decoder.h
index 26035d221080a5304cbccdde0bcf4490c78550bf..8b901f70cb4169632b9eaeab3dcb99dcbdc1a0a3 100644 (file)
@@ -47,11 +47,13 @@ public:
        boost::shared_ptr<AudioDecoder> audio;
        boost::shared_ptr<SubtitleDecoder> subtitle;
 
-       /** @return true if there is no more data to come from this decoder */
+       /** 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) = 0;
+       virtual void seek (ContentTime time, bool accurate);
 
-       ContentTime position () const;
+       virtual ContentTime position () const;
 };
 
 #endif