summaryrefslogtreecommitdiff
path: root/src/lib/dcp_examiner.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-06-19 20:29:55 +0200
committerCarl Hetherington <cth@carlh.net>2020-06-19 20:29:55 +0200
commit7066750d52663968960d496d256a0dfd8c96c856 (patch)
tree53580303eda46fb121f1c6d6a6decd75b565c120 /src/lib/dcp_examiner.h
parentfebe9c38dcc26859ff61a084fa4a6f98897018f1 (diff)
DCPExaminer must find Atmos length / edit rate.
Diffstat (limited to 'src/lib/dcp_examiner.h')
-rw-r--r--src/lib/dcp_examiner.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/dcp_examiner.h b/src/lib/dcp_examiner.h
index b4c87596c..78d2befd3 100644
--- a/src/lib/dcp_examiner.h
+++ b/src/lib/dcp_examiner.h
@@ -135,6 +135,14 @@ public:
return _has_atmos;
}
+ Frame atmos_length () const {
+ return _atmos_length;
+ }
+
+ dcp::Fraction atmos_edit_rate () const {
+ return _atmos_edit_rate;
+ }
+
private:
boost::optional<double> _video_frame_rate;
boost::optional<dcp::Size> _video_size;
@@ -161,4 +169,6 @@ private:
std::vector<dcp::Rating> _ratings;
std::string _content_version;
bool _has_atmos;
+ Frame _atmos_length;
+ dcp::Fraction _atmos_edit_rate;
};