X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdecoder.h;h=34153eafc949f09ee2fcbe7629ec557df111e4b0;hb=76dcdc1b73a15b4d38bd7280af7b997f9bec7d67;hp=da5be4af679ccbda8b7c2100e2af3e5ce52b82e6;hpb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;p=dcpomatic.git diff --git a/src/lib/decoder.h b/src/lib/decoder.h index da5be4af6..34153eafc 100644 --- a/src/lib/decoder.h +++ b/src/lib/decoder.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2020 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -18,39 +18,45 @@ */ + /** @file src/decoder.h * @brief Decoder class. */ + #ifndef DCPOMATIC_DECODER_H #define DCPOMATIC_DECODER_H -#include "types.h" -#include "film.h" -#include "font_data.h" + #include "dcpomatic_time.h" +#include "film.h" #include "weak_film.h" #include -class Decoded; -class VideoDecoder; -class AudioDecoder; -class TextDecoder; + class AtmosDecoder; +class AudioDecoder; +class Decoded; class DecoderPart; +class TextDecoder; +class VideoDecoder; + /** @class Decoder. * @brief Parent class for decoders of content. */ -class Decoder : public boost::noncopyable, public WeakConstFilm +class Decoder : public WeakConstFilm { public: Decoder (std::weak_ptr film); virtual ~Decoder () {} + Decoder (Decoder const&) = delete; + Decoder& operator= (Decoder const&) = delete; + std::shared_ptr video; std::shared_ptr audio; - std::list > text; + std::list> text; std::shared_ptr atmos; std::shared_ptr only_text () const; @@ -62,10 +68,7 @@ public: virtual void seek (dcpomatic::ContentTime time, bool accurate); virtual dcpomatic::ContentTime position () const; - - virtual std::vector fonts () const { - return std::vector(); - } }; + #endif