diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-05-25 15:08:21 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-05-25 15:08:21 +0100 |
| commit | e4ed001fff70bd10b94e61bf36cdffd1a679286d (patch) | |
| tree | 9147de6473246ed175814d4c2cfc3176fe2ba436 /src/atmos_asset.h | |
| parent | 216555fd5145ce4668d1a02337ed87edef64367b (diff) | |
Basic writing of DCPs containing Atmos MXFs; untested.
Diffstat (limited to 'src/atmos_asset.h')
| -rw-r--r-- | src/atmos_asset.h | 10 |
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; |
