Basics of multiple captions per content so that DCPContent can
[dcpomatic.git] / src / lib / dcp_examiner.h
index 0558bfcfce1bc688853f6f13cb7c5ef63f3c3757..0d55d4643e69f80060e7305f34208b47089300ba 100644 (file)
@@ -31,14 +31,20 @@ class DCPContent;
 class DCPExaminer : public DCP, public VideoExaminer, public AudioExaminer
 {
 public:
-       DCPExaminer (boost::shared_ptr<const DCPContent>);
+       explicit DCPExaminer (boost::shared_ptr<const DCPContent>);
+
+       bool has_video () const {
+               return _has_video;
+       }
 
        boost::optional<double> video_frame_rate () const {
                return _video_frame_rate;
        }
 
        dcp::Size video_size () const {
-               return _video_size.get_value_or (dcp::Size (1998, 1080));
+               DCPOMATIC_ASSERT (_has_video);
+               DCPOMATIC_ASSERT (_video_size);
+               return *_video_size;
        }
 
        Frame video_length () const {
@@ -53,8 +59,8 @@ public:
                return _name;
        }
 
-       bool has_subtitles () const {
-               return _has_subtitles;
+       int captions () const {
+               return _captions;
        }
 
        bool encrypted () const {
@@ -65,6 +71,10 @@ public:
                return _needs_assets;
        }
 
+       bool has_audio () const {
+               return _has_audio;
+       }
+
        int audio_channels () const {
                return _audio_channels.get_value_or (0);
        }
@@ -93,6 +103,10 @@ public:
                return _cpl;
        }
 
+       std::list<int64_t> reel_lengths () const {
+               return _reel_lengths;
+       }
+
 private:
        boost::optional<double> _video_frame_rate;
        boost::optional<dcp::Size> _video_size;
@@ -101,11 +115,16 @@ private:
        boost::optional<int> _audio_frame_rate;
        Frame _audio_length;
        std::string _name;
-       bool _has_subtitles;
+       /** true if this DCP has video content (but false if it has unresolved references to video content) */
+       bool _has_video;
+       /** true if this DCP has audio content (but false if it has unresolved references to audio content) */
+       bool _has_audio;
+       int _captions;
        bool _encrypted;
        bool _needs_assets;
        bool _kdm_valid;
        boost::optional<dcp::Standard> _standard;
        bool _three_d;
        std::string _cpl;
+       std::list<int64_t> _reel_lengths;
 };