X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=908d3aae51c3948803199af980ae4f7bb1e1f157;hb=ea910e250a0fb3b0ad3ce0cf32dd27b24c17cd1d;hp=be9555dc4ffccb21b1c45ebd3d7fda4880d96e13;hpb=e8819ad7580f25eea7ca3c59cf0a3979d76a6b44;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index be9555dc4..908d3aae5 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -24,26 +24,17 @@ #ifndef DCPOMATIC_DECODER_H #define DCPOMATIC_DECODER_H -#include -#include -#include #include -#include -#include "video_source.h" -#include "audio_source.h" -#include "film.h" +#include +#include +#include "types.h" -class Image; -class Log; -class DelayLine; -class TimedSubtitle; -class Subtitle; -class FilterGraph; +class Film; /** @class Decoder. * @brief Parent class for decoders of content. */ -class Decoder +class Decoder : public boost::noncopyable { public: Decoder (boost::shared_ptr); @@ -54,34 +45,21 @@ public: */ virtual void pass () = 0; - /** Seek this decoder to as close as possible to some time, - * expressed relative to our source's start. - * @param t Time. + /** 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. */ - virtual void seek (Time) {} + virtual void seek (Time time, bool accurate) = 0; - /** Seek back one video frame */ - virtual void seek_back () {} - - /** Seek forward one video frame */ - virtual void seek_forward () {} - - /** @return Approximate time of the next content that we will emit, - * expressed relative to the start of our source. - */ - virtual Time next () const = 0; + virtual bool done () const = 0; protected: + virtual void flush () {}; + /** The Film that we are decoding in */ boost::weak_ptr _film; - -private: - /** This will be called when our Film emits Changed */ - virtual void film_changed (Film::Property) {} - - /** Connection to our Film */ - boost::signals2::scoped_connection _film_connection; }; #endif