X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=8b901f70cb4169632b9eaeab3dcb99dcbdc1a0a3;hb=0f42e807a707249cd1a60fa6e476cb47a4147c5a;hp=bd4bf01c2135bbcb68cab9a850caeb93a3fc8358;hpb=f113b2aaca7a65f7b37e12a7d9f3f99e2d834e81;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index bd4bf01c2..8b901f70c 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2016 Carl Hetherington This file is part of DCP-o-matic. @@ -33,6 +33,7 @@ class Decoded; class VideoDecoder; class AudioDecoder; class SubtitleDecoder; +class DecoderPart; /** @class Decoder. * @brief Parent class for decoders of content. @@ -46,32 +47,13 @@ public: boost::shared_ptr audio; boost::shared_ptr subtitle; - enum PassReason { - PASS_REASON_VIDEO, - PASS_REASON_AUDIO, - PASS_REASON_SUBTITLE - }; - - /** @return true if this decoder has already returned all its data and will give no more */ - virtual bool pass (PassReason, bool accurate) = 0; - - /** Ensure that any future get() calls return data that reflect - * changes in our content's settings. + /** 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 void reset () {} + virtual bool pass () = 0; + virtual void seek (ContentTime time, bool accurate); - void maybe_seek (boost::optional& position, ContentTime time, bool accurate); - -private: - /** 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 ensure that, at worst, - * the next thing we yield comes before `time'. This may entail - * seeking some way before `time' to be on the safe side. - * Alternatively, if seeking is 100% accurate for this decoder, - * it may seek to just the right spot. - */ - virtual void seek (ContentTime time, bool accurate) = 0; + virtual ContentTime position () const; }; #endif