From: Carl Hetherington Date: Tue, 25 Aug 2015 18:35:03 +0000 (+0100) Subject: Replace _floor with _round in dcp_to_content_video. _floor breaks X-Git-Tag: v2.1.46~8 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=e386b94425586760374d8e1cb16be99af09cf07f Replace _floor with _round in dcp_to_content_video. _floor breaks playback on Win XP 32 as the player keeps requesting the same frame from the decoder rather than the next one. --- diff --git a/src/lib/player.cc b/src/lib/player.cc index 3ceaac8c1..c51f80067 100644 --- a/src/lib/player.cc +++ b/src/lib/player.cc @@ -524,10 +524,7 @@ Player::dcp_to_content_video (shared_ptr piece, DCPTime t) const shared_ptr vc = dynamic_pointer_cast (piece->content); DCPTime s = t - piece->content->position (); s = min (piece->content->length_after_trim(), s); - /* We're returning a frame index here so we need to floor() the conversion since we want to know the frame - that contains t, I think - */ - return max (ContentTime (), ContentTime (s, piece->frc) + piece->content->trim_start ()).frames_floor (vc->video_frame_rate ()); + return max (ContentTime (), ContentTime (s, piece->frc) + piece->content->trim_start ()).frames_round (vc->video_frame_rate ()); } DCPTime