Simple cover sheet support (#1039).
[dcpomatic.git] / src / lib / dcp_content.h
index 11096037c19eb651246b19ff91045b142a2308b7..18d198fe89cbe3514bdbf26ff1d30ae14012b0be 100644 (file)
 class DCPContentProperty
 {
 public:
-       static int const CAN_BE_PLAYED;
+       static int const NEEDS_KDM;
+       static int const NEEDS_ASSETS;
        static int const REFERENCE_VIDEO;
        static int const REFERENCE_AUDIO;
        static int const REFERENCE_SUBTITLE;
+       static int const NAME;
+       static int const HAS_SUBTITLES;
 };
 
 class ContentPart;
@@ -114,12 +117,16 @@ public:
 
        bool can_reference_subtitle (std::list<std::string> &) const;
 
+       void set_cpl (std::string id);
+
        boost::optional<std::string> cpl () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _cpl;
        }
 
 private:
+       friend class reels_test5;
+
        void add_properties (std::list<UserProperty>& p) const;
 
        void read_directory (boost::filesystem::path);
@@ -130,6 +137,11 @@ private:
                std::list<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,6 +169,8 @@ private:
         *  just use the only CPL.
         */
        boost::optional<std::string> _cpl;
+       /** List of the lengths of the reels in this DCP */
+       std::list<int64_t> _reel_lengths;
 };
 
 #endif