diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-06-04 17:16:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-06-05 14:34:43 +0100 |
| commit | 2293c14a21f8a4929abd8b97033699f5d3bba1dc (patch) | |
| tree | a756d20b8cdfdfbbbd26eafb4addcd4d32042adf /src/mxf.h | |
| parent | 6c55e8d2c3b0129a19fc40dca344219021ad12ef (diff) | |
Move edit rate and intrinsic duration out of MXF.
Diffstat (limited to 'src/mxf.h')
| -rw-r--r-- | src/mxf.h | 19 |
1 files changed, 1 insertions, 18 deletions
@@ -47,7 +47,7 @@ class MXFMetadata; class MXF : public Asset { public: - MXF (Fraction edit_rate); + MXF (); MXF (boost::filesystem::path file); ~MXF (); @@ -103,17 +103,6 @@ public: MXFMetadata metadata () const { return _metadata; } - - Fraction edit_rate () const { - return _edit_rate; - } - - /** @return The total length of this content in video frames. - * The amount of content presented may be less than this. - */ - int64_t intrinsic_duration () const { - return _intrinsic_duration; - } protected: friend class MXFWriter; @@ -122,12 +111,6 @@ protected: std::string pkl_type (Standard standard) const; void read_writer_info (ASDCP::WriterInfo const &); - Fraction _edit_rate; - /** The total length of this content in video frames. The amount of - * content presented may be less than this. - */ - int64_t _intrinsic_duration; - ASDCP::AESEncContext* _encryption_context; ASDCP::AESDecContext* _decryption_context; /** ID of the key used for encryption/decryption, or an empty string */ |
