Rename Time::round_up to Time::ceil.
[dcpomatic.git] / src / lib / content.cc
index b5bae69b684f8a57c50a94dc96803ee74571c15a..942e9e533c8535b852af35df0b2108da5d8951fa 100644 (file)
@@ -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;
 }