From f9068dcbfbb09082e29e2a779ef1a7a2f6ee849e Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 12 Oct 2015 15:05:09 +0100 Subject: Rename split-by-video content slightly; fix referencing to multi-reel DCPs. --- src/lib/video_content.cc | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/lib/video_content.cc') 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 >& p) const p.push_back (make_pair (_("Video size"), raw_convert (video_size().width) + "x" + raw_convert (video_size().height))); p.push_back (make_pair (_("Video frame rate"), raw_convert (video_frame_rate()) + " " + _("frames per second"))); } + +list +VideoContent::reel_split_points () const +{ + list t; + t.push_back (position ()); + return t; +} -- cgit v1.2.3