X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_content.h;h=2a3ef46e80092db8b2fd4288211eccac18975163;hb=92f024ea58c7279b8096e5e9f60f9cb2613e8a91;hp=ae8efa65e5e8378dbd0df524d090960265e3e13b;hpb=9f034b0e2b39c2c56b767371af90deb888d8779f;p=dcpomatic.git diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index ae8efa65e..2a3ef46e8 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014-2016 Carl Hetherington + Copyright (C) 2014-2018 Carl Hetherington This file is part of DCP-o-matic. @@ -36,8 +36,10 @@ public: static int const NEEDS_ASSETS; static int const REFERENCE_VIDEO; static int const REFERENCE_AUDIO; - static int const REFERENCE_SUBTITLE; + static int const REFERENCE_TEXT; static int const NAME; + static int const TEXTS; + static int const CPL; }; class ContentPart; @@ -66,7 +68,7 @@ public: std::string technical_summary () const; void as_xml (xmlpp::Node *, bool with_paths) const; std::string identifier () const; - void use_template (boost::shared_ptr c); + void take_settings_from (boost::shared_ptr c); void set_default_colour_conversion (); std::list reel_split_points () const; @@ -96,7 +98,7 @@ public: return _reference_video; } - bool can_reference_video (std::list &) const; + bool can_reference_video (std::string &) const; void set_reference_audio (bool r); @@ -105,16 +107,19 @@ public: return _reference_audio; } - bool can_reference_audio (std::list &) const; + bool can_reference_audio (std::string &) const; - void set_reference_subtitle (bool r); + void set_reference_text (TextType type, bool r); - bool reference_subtitle () const { + /** @param type Original type of texts in the DCP. + * @return true if these texts are to be referenced. + */ + bool reference_text (TextType type) const { boost::mutex::scoped_lock lm (_mutex); - return _reference_subtitle; + return _reference_text[type]; } - bool can_reference_subtitle (std::list &) const; + bool can_reference_text (TextType type, std::string &) const; void set_cpl (std::string id); @@ -123,6 +128,23 @@ public: return _cpl; } + std::string name () const { + boost::mutex::scoped_lock lm (_mutex); + return _name; + } + + bool three_d () const { + boost::mutex::scoped_lock lm (_mutex); + return _three_d; + } + + boost::optional content_kind () const { + boost::mutex::scoped_lock lm (_mutex); + return _content_kind; + } + + bool kdm_timing_window_valid () const; + private: friend class reels_test5; @@ -131,16 +153,11 @@ private: void read_directory (boost::filesystem::path); std::list reels () const; bool can_reference ( - boost::function (boost::shared_ptr)>, + boost::function )>, std::string overlapping, - std::list& why_not + std::string& why_not ) const; - std::string name () const { - boost::mutex::scoped_lock lm (_mutex); - return _name; - } - std::string _name; /** true if our DCP is encrypted */ bool _encrypted; @@ -157,12 +174,14 @@ private: * rather than by rewrapping. */ bool _reference_audio; - /** true if the subtitle in this DCP should be included in the output by reference - * rather than by rewrapping. + /** true if the texts in this DCP should be included in the output by reference + * rather than by rewrapping. The types here are the original text types, + * not what they are being used for. */ - bool _reference_subtitle; + bool _reference_text[TEXT_COUNT]; boost::optional _standard; + boost::optional _content_kind; bool _three_d; /** ID of the CPL to use; older metadata might not specify this: in that case * just use the only CPL.