X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=d610f8727c902cd6bf889ab8cbc024ba3981f606;hp=181fc6c2ab8869dc96f5269600f69017d362d631;hb=a5be11a965c2c38442e4e069874e7e21b5b43a5c;hpb=9b7e3d7d992f64da4bc78bc99d1eb706f181b798 diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 181fc6c2a..d610f8727 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -26,13 +26,15 @@ #define DCPOMATIC_DECODER_H #include "types.h" +#include "film.h" #include "dcpomatic_time.h" #include class Decoded; class VideoDecoder; class AudioDecoder; -class SubtitleDecoder; +class TextDecoder; +class DecoderPart; /** @class Decoder. * @brief Parent class for decoders of content. @@ -40,35 +42,28 @@ class SubtitleDecoder; class Decoder : public boost::noncopyable { public: + Decoder (boost::weak_ptr film); virtual ~Decoder () {} boost::shared_ptr video; boost::shared_ptr audio; - boost::shared_ptr subtitle; - - enum PassReason { - PASS_REASON_VIDEO, - PASS_REASON_AUDIO, - PASS_REASON_SUBTITLE - }; - - /** 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; + std::list > text; - /** @return true if this decoder has already returned all its data and will give no more */ - virtual bool pass (PassReason, bool accurate) = 0; + boost::shared_ptr only_text () const; - /** 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); + + ContentTime position () const; + +protected: + boost::shared_ptr film () const; + +private: + boost::weak_ptr _film; }; #endif