diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-11-21 12:15:26 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-11-21 12:15:26 +0000 |
| commit | f67bc45820b4e56f90eecb97ba3b7762c119f9b5 (patch) | |
| tree | 58b009c238bc4dad8606e70ba617bcb7a49fb89c /src/lib/atmos_mxf_content.h | |
| parent | 84012cdd64f451891febd36154b7226ea21a899b (diff) | |
Add and use new FrameRateChange constructors.
Diffstat (limited to 'src/lib/atmos_mxf_content.h')
| -rw-r--r-- | src/lib/atmos_mxf_content.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/atmos_mxf_content.h b/src/lib/atmos_mxf_content.h index 156ebc788..854824c67 100644 --- a/src/lib/atmos_mxf_content.h +++ b/src/lib/atmos_mxf_content.h @@ -30,6 +30,10 @@ public: return boost::dynamic_pointer_cast<AtmosMXFContent> (Content::shared_from_this ()); } + boost::shared_ptr<const AtmosMXFContent> shared_from_this () const { + return boost::dynamic_pointer_cast<const AtmosMXFContent> (Content::shared_from_this ()); + } + void examine (boost::shared_ptr<const Film> film, boost::shared_ptr<Job> job); std::string summary () const; void as_xml (xmlpp::Node* node, bool with_path) const; |
