diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-01-04 01:28:54 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-01-04 01:28:54 +0000 |
| commit | 11ac33e140f3aa9d6e992880a1e1b3a4ca649355 (patch) | |
| tree | 6bf84806228017259803c3cd972166dd410c3b33 /src/lib/content.cc | |
| parent | 3327fcba6db6c0b2e70ccca81340f5d5781cae0d (diff) | |
Rename Time::round_up to Time::ceil.
Diffstat (limited to 'src/lib/content.cc')
| -rw-r--r-- | src/lib/content.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/content.cc b/src/lib/content.cc index b5bae69b6..942e9e533 100644 --- a/src/lib/content.cc +++ b/src/lib/content.cc @@ -327,7 +327,7 @@ Content::reel_split_points () const { list<DCPTime> t; /* XXX: this is questionable; perhaps the position itself should be forced to be on a frame boundary */ - t.push_back (position().round_up (film()->video_frame_rate())); + t.push_back (position().ceil (film()->video_frame_rate())); return t; } |
