summaryrefslogtreecommitdiff
path: root/src/atmos_asset.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-05-25 15:08:21 +0100
committerCarl Hetherington <cth@carlh.net>2016-05-25 15:08:21 +0100
commite4ed001fff70bd10b94e61bf36cdffd1a679286d (patch)
tree9147de6473246ed175814d4c2cfc3176fe2ba436 /src/atmos_asset.h
parent216555fd5145ce4668d1a02337ed87edef64367b (diff)
Basic writing of DCPs containing Atmos MXFs; untested.
Diffstat (limited to 'src/atmos_asset.h')
-rw-r--r--src/atmos_asset.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/atmos_asset.h b/src/atmos_asset.h
index 602beb31..be756077 100644
--- a/src/atmos_asset.h
+++ b/src/atmos_asset.h
@@ -32,6 +32,14 @@ public:
std::string pkl_type (Standard) const;
+ Fraction edit_rate () const {
+ return _edit_rate;
+ }
+
+ int64_t intrinsic_duration () const {
+ return _intrinsic_duration;
+ }
+
/** @return frame number of the frame to align with the FFOA of the picture track */
int first_frame () const {
return _first_frame;
@@ -48,6 +56,8 @@ public:
}
private:
+ Fraction _edit_rate;
+ int64_t _intrinsic_duration;
int _first_frame;
int _max_channel_count;
int _max_object_count;