]> git.sesse.net Git - nageru/commitdiff
Fix an issue where we would lose track of the time scale during fades, causing us...
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 10 Dec 2018 19:27:19 +0000 (20:27 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Mon, 10 Dec 2018 19:27:19 +0000 (20:27 +0100)
futatabi/player.cpp

index b88aa56267e7b7e87f9747be3db8d96e25280e5a..5ea34ea64936a3b4c9fc71b671d6a4b2538e2ffb 100644 (file)
@@ -112,9 +112,10 @@ got_clip:
                double speed = 0.5;
 
                int64_t in_pts_start_next_clip = -1;
+               steady_clock::time_point next_frame_start;
                for (int frameno = 0; ; ++frameno) {  // Ends when the clip ends.
                        double out_pts = out_pts_origin + TIMEBASE * frameno / output_framerate;
-                       steady_clock::time_point next_frame_start =
+                       next_frame_start =
                                origin + microseconds(lrint((out_pts - out_pts_origin) * 1e6 / TIMEBASE));
                        int64_t in_pts = lrint(in_pts_origin + TIMEBASE * frameno * speed / output_framerate);
                        pts = lrint(out_pts);
@@ -329,7 +330,7 @@ got_clip:
                        got_next_clip = false;
 
                        // Start the next clip from the point where the fade went out.
-                       origin = steady_clock::now();
+                       origin = next_frame_start;
                        in_pts_origin = in_pts_start_next_clip;
                        goto got_clip;
                }