X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=38556c8188a3932a319c5c3c3a7e463fa0fde435;hb=c98c87afe29d9ef74bdced8a9c96d7752f3fe80f;hp=9eb4850f9750fa7ad967c63a7545653b82f4b642;hpb=293583097f7b25e481f0898f13c62c10aac33719;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 9eb4850f9..38556c818 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -27,7 +27,10 @@ #include #include #include +#include "types.h" +#include "dcpomatic_time.h" +class Decoded; class Film; /** @class Decoder. @@ -36,20 +39,18 @@ class Film; class Decoder : public boost::noncopyable { public: - Decoder (boost::shared_ptr); virtual ~Decoder () {} - /** Perform one decode pass of the content, which may or may not - * cause the object to emit some data. +protected: + /** Seek so that the next pass() will yield the next thing + * (video/sound frame, subtitle etc.) at or after the requested + * time. Pass accurate = true to try harder to get close to + * the request. Note that seeking to time t may mean that + * the next pass() yields, for example, audio at time t and then + * video before it. */ - virtual void pass () = 0; - - virtual bool done () const = 0; - -protected: - - /** The Film that we are decoding in */ - boost::weak_ptr _film; + virtual void seek (ContentTime time, bool accurate) = 0; + virtual bool pass () = 0; }; #endif