Disallow referencing of Interop DCPs in SMPTE films, and vice versa (#804).
[dcpomatic.git] / src / lib / dcp_examiner.h
index f2609ed3e4b262b72340643c2b23f93455f9d844..542f018c9eac9b806c9b41999bed8f5b247f2027 100644 (file)
@@ -75,6 +75,10 @@ public:
                return _kdm_valid;
        }
 
+       boost::optional<dcp::Standard> standard () const {
+               return _standard;
+       }
+
 private:
        boost::optional<double> _video_frame_rate;
        boost::optional<dcp::Size> _video_size;
@@ -86,4 +90,5 @@ private:
        bool _has_subtitles;
        bool _encrypted;
        bool _kdm_valid;
+       boost::optional<dcp::Standard> _standard;
 };