diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-10-12 15:05:09 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-10-12 15:05:09 +0100 |
| commit | f9068dcbfbb09082e29e2a779ef1a7a2f6ee849e (patch) | |
| tree | 40054a96c986c133b2edb00c7c9a127d8d36a1a2 /src/lib/dcp_content.h | |
| parent | bccc426dd0924bf6be63000835d7c86fd390ff59 (diff) | |
Rename split-by-video content slightly; fix referencing to multi-reel DCPs.
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 0f59bdf43..be12ba534 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -52,6 +52,10 @@ public: return boost::dynamic_pointer_cast<DCPContent> (Content::shared_from_this ()); } + boost::shared_ptr<const DCPContent> shared_from_this () const { + return boost::dynamic_pointer_cast<const DCPContent> (Content::shared_from_this ()); + } + DCPTime full_length () const; void examine (boost::shared_ptr<Job>); @@ -61,6 +65,7 @@ public: std::string identifier () const; void set_default_colour_conversion (); + std::list<DCPTime> reel_split_points () const; /* SubtitleContent */ |
