X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=da5be4af679ccbda8b7c2100e2af3e5ce52b82e6;hb=1d2a51bdc8315fa7283be329669860e435a1513f;hp=3717d931d63e20be1dd6701ab304cffaf1c13e0b;hpb=a28ef704adf8c5bfa45b3d6285f741af64758ceb;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 3717d931d..da5be4af6 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2020 Carl Hetherington This file is part of DCP-o-matic. @@ -26,53 +26,46 @@ #define DCPOMATIC_DECODER_H #include "types.h" +#include "film.h" +#include "font_data.h" #include "dcpomatic_time.h" +#include "weak_film.h" #include class Decoded; class VideoDecoder; class AudioDecoder; -class SubtitleDecoder; +class TextDecoder; +class AtmosDecoder; class DecoderPart; /** @class Decoder. * @brief Parent class for decoders of content. */ -class Decoder : public boost::noncopyable +class Decoder : public boost::noncopyable, public WeakConstFilm { public: + Decoder (std::weak_ptr film); virtual ~Decoder () {} - boost::shared_ptr video; - boost::shared_ptr audio; - boost::shared_ptr subtitle; + std::shared_ptr video; + std::shared_ptr audio; + std::list > text; + std::shared_ptr atmos; - enum PassReason { - PASS_REASON_VIDEO, - PASS_REASON_AUDIO, - PASS_REASON_SUBTITLE - }; + std::shared_ptr only_text () const; - /** @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. - */ - virtual void reset () {} - - 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. + /** 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 seek (ContentTime time, bool accurate) = 0; + virtual bool pass () = 0; + virtual void seek (dcpomatic::ContentTime time, bool accurate); + + virtual dcpomatic::ContentTime position () const; + + virtual std::vector fonts () const { + return std::vector(); + } }; #endif