X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=0324075a36d98a252013e29dad8df9a8cf6e0392;hb=ff639b3cf30afcc097bfd21d39c8d15f466cadd6;hp=84661ee8c4a1637b79a2796cce5ad1083f142e44;hpb=97d39f46795af78b84d5f7bc9118a188f2864781;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index 84661ee8c..0324075a3 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2015 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,63 +18,58 @@ */ + /** @file src/decoder.h * @brief Decoder class. */ + #ifndef DCPOMATIC_DECODER_H #define DCPOMATIC_DECODER_H -#include "types.h" + #include "dcpomatic_time.h" +#include "film.h" +#include "types.h" +#include "weak_film.h" #include + +class AtmosDecoder; +class AudioDecoder; class Decoded; +class DecoderPart; +class TextDecoder; class VideoDecoder; -class AudioDecoder; -class SubtitleDecoder; + /** @class Decoder. * @brief Parent class for decoders of content. */ -class Decoder : public boost::noncopyable +class Decoder : public WeakConstFilm { public: + Decoder (std::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 - }; + Decoder (Decoder const&) = delete; + Decoder& operator= (Decoder const&) = delete; - void maybe_seek (ContentTime time, bool accurate); + std::shared_ptr video; + std::shared_ptr audio; + std::list> text; + std::shared_ptr atmos; - /** @return true if this decoder has already returned all its data and will give no more */ - virtual bool pass (PassReason, bool accurate) = 0; + std::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 () {} - -protected: - boost::optional _position; - -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 bool pass () = 0; + virtual void seek (dcpomatic::ContentTime time, bool accurate); + + virtual dcpomatic::ContentTime position () const; }; + #endif