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/video_content.cc | |
| parent | bccc426dd0924bf6be63000835d7c86fd390ff59 (diff) | |
Rename split-by-video content slightly; fix referencing to multi-reel DCPs.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index ff54c4014..a9b286315 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -579,3 +579,11 @@ VideoContent::add_properties (list<pair<string, string> >& p) const p.push_back (make_pair (_("Video size"), raw_convert<string> (video_size().width) + "x" + raw_convert<string> (video_size().height))); p.push_back (make_pair (_("Video frame rate"), raw_convert<string> (video_frame_rate()) + " " + _("frames per second"))); } + +list<DCPTime> +VideoContent::reel_split_points () const +{ + list<DCPTime> t; + t.push_back (position ()); + return t; +} |
