X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_examiner.h;h=199ac39851e4229e57949b33e7cd62043e22f771;hb=5b68916d71fbaac6c84ffc37e98d4ad42d450961;hp=0558bfcfce1bc688853f6f13cb7c5ef63f3c3757;hpb=df28b0e939bd0f12ae31e6f7ba94fa954496b3b8;p=dcpomatic.git diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index 0558bfcfc..199ac3985 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2014 Carl Hetherington + Copyright (C) 2014-2019 Carl Hetherington This file is part of DCP-o-matic. @@ -31,14 +31,20 @@ class DCPContent; class DCPExaminer : public DCP, public VideoExaminer, public AudioExaminer { public: - DCPExaminer (boost::shared_ptr); + explicit DCPExaminer (boost::shared_ptr); + + bool has_video () const { + return _has_video; + } boost::optional 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,10 +59,6 @@ public: return _name; } - bool has_subtitles () const { - return _has_subtitles; - } - bool encrypted () const { return _encrypted; } @@ -65,6 +67,10 @@ public: return _needs_assets; } + bool has_audio () const { + return _has_audio; + } + int audio_channels () const { return _audio_channels.get_value_or (0); } @@ -77,6 +83,13 @@ public: return _audio_frame_rate.get_value_or (48000); } + /** @param type TEXT_OPEN_SUBTITLE or TEXT_CLOSED_CAPTION. + * @return Number of assets of this type in this DCP. + */ + int text_count (TextType type) const { + return _text_count[type]; + } + bool kdm_valid () const { return _kdm_valid; } @@ -89,10 +102,18 @@ public: return _three_d; } + dcp::ContentKind content_kind () const { + return _content_kind; + } + std::string cpl () const { return _cpl; } + std::list reel_lengths () const { + return _reel_lengths; + } + private: boost::optional _video_frame_rate; boost::optional _video_size; @@ -101,11 +122,18 @@ private: boost::optional _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; + /** number of different assets of each type (OCAP/CCAP) */ + int _text_count[TEXT_COUNT]; bool _encrypted; bool _needs_assets; bool _kdm_valid; boost::optional _standard; bool _three_d; + dcp::ContentKind _content_kind; std::string _cpl; + std::list _reel_lengths; };