X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fdcp_examiner.h;h=f577e2b3552c999a1f5f0b3e681fbafe4c785248;hb=dd9be86db6cde0afa5da0d1d1ac43b42e05dca26;hp=b4c87596c70e354079937132d289a06ed2ba8a42;hpb=ca981c8cfa23111e92be329f1c2dfbe3a07b4247;p=dcpomatic.git diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h index b4c87596c..f577e2b35 100644 --- a/src/lib/dcp_examiner.h +++ b/src/lib/dcp_examiner.h @@ -25,6 +25,8 @@ #include "video_examiner.h" #include "audio_examiner.h" #include "dcp.h" +#include "dcp_text_track.h" +#include "dcpomatic_assert.h" #include class DCPContent; @@ -32,7 +34,7 @@ class DCPContent; class DCPExaminer : public DCP, public VideoExaminer, public AudioExaminer { public: - explicit DCPExaminer (boost::shared_ptr, bool tolerant); + explicit DCPExaminer (std::shared_ptr, bool tolerant); bool has_video () const { return _has_video; @@ -95,6 +97,11 @@ public: return _text_count[type]; } + DCPTextTrack dcp_text_track (int i) const { + DCPOMATIC_ASSERT (i >= 0 && i < static_cast(_dcp_text_tracks.size())); + return _dcp_text_tracks[i]; + } + bool kdm_valid () const { return _kdm_valid; } @@ -127,14 +134,22 @@ public: return _ratings; } - std::string content_version () const { - return _content_version; + std::vector content_versions () const { + return _content_versions; } bool has_atmos () const { return _has_atmos; } + Frame atmos_length () const { + return _atmos_length; + } + + dcp::Fraction atmos_edit_rate () const { + return _atmos_edit_rate; + } + private: boost::optional _video_frame_rate; boost::optional _video_size; @@ -149,6 +164,8 @@ private: bool _has_audio; /** number of different assets of each type (OCAP/CCAP) */ int _text_count[TEXT_COUNT]; + /** the DCPTextTracks for each of our CCAPs */ + std::vector _dcp_text_tracks; bool _encrypted; bool _needs_assets; bool _kdm_valid; @@ -159,6 +176,8 @@ private: std::list _reel_lengths; std::map _markers; std::vector _ratings; - std::string _content_version; + std::vector _content_versions; bool _has_atmos; + Frame _atmos_length; + dcp::Fraction _atmos_edit_rate; };