summaryrefslogtreecommitdiff
path: root/src/lib/video_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-02-16 12:15:38 +0000
committerCarl Hetherington <cth@carlh.net>2016-02-16 12:15:38 +0000
commit797648ddcfe72bb428d8355672da3a1b6fac54fc (patch)
tree2f0d7cf7f3aaee8b45b0dfa9e3363b082e57af31 /src/lib/video_content.cc
parent66d12a84fd513ad68692f7cb473472ad76aa495f (diff)
Move reel_split_points from VideoContent to Content.
Diffstat (limited to 'src/lib/video_content.cc')
-rw-r--r--src/lib/video_content.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc
index fcf7e3229..514ecae2e 100644
--- a/src/lib/video_content.cc
+++ b/src/lib/video_content.cc
@@ -586,15 +586,6 @@ VideoContent::add_properties (list<pair<string, string> >& p) const
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;
- /* XXX: this is questionable; perhaps the position should be forced to be on a frame boundary */
- t.push_back (position().round_up (film()->video_frame_rate()));
- return t;
-}
-
double
VideoContent::video_frame_rate () const
{