Add Content::set_paths().
[dcpomatic.git] / src / lib / dcp_content.h
index 1212b8b0fbf3ff79f3681d10b8c0fd6044b5b516..18d198fe89cbe3514bdbf26ff1d30ae14012b0be 100644 (file)
@@ -38,6 +38,7 @@ public:
        static int const REFERENCE_AUDIO;
        static int const REFERENCE_SUBTITLE;
        static int const NAME;
+       static int const HAS_SUBTITLES;
 };
 
 class ContentPart;
@@ -168,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