Read ISDCF Metadata from 2.14.x metadata (#2083).
[dcpomatic.git] / src / lib / video_content.h
index 4e9e5815f3e864311d5b37a909665f77fc567941..0c46499547c3245b0ad410dd4a1ea2b0b16708c7 100644 (file)
@@ -45,7 +45,6 @@ public:
        static int const SIZE;
        static int const FRAME_TYPE;
        static int const CROP;
-       static int const SCALE;
        static int const COLOUR_CONVERSION;
        static int const FADE_IN;
        static int const FADE_OUT;
@@ -61,7 +60,7 @@ class VideoContent : public ContentPart, public std::enable_shared_from_this<Vid
 public:
        explicit VideoContent (Content* parent);
        VideoContent (Content* parent, cxml::ConstNodePtr, int);
-       VideoContent (Content* parent, std::vector<std::shared_ptr<Content> >);
+       VideoContent (Content* parent, std::vector<std::shared_ptr<Content>>);
 
        void as_xml (xmlpp::Node *) const;
        std::string technical_summary () const;
@@ -249,4 +248,5 @@ private:
        boost::optional<dcp::LanguageTag> _burnt_subtitle_language;
 };
 
+
 #endif