summaryrefslogtreecommitdiff
path: root/src/lib/dcp_content.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-10-12 15:05:09 +0100
committerCarl Hetherington <cth@carlh.net>2015-10-12 15:05:09 +0100
commitf9068dcbfbb09082e29e2a779ef1a7a2f6ee849e (patch)
tree40054a96c986c133b2edb00c7c9a127d8d36a1a2 /src/lib/dcp_content.h
parentbccc426dd0924bf6be63000835d7c86fd390ff59 (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.h5
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 */