From 234d63292092d1450120abde1dce8843c2188bf0 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 19 Jan 2015 18:00:41 +0100 Subject: video: fix waiting for last frame/format reconfig We still need to send the VO a duration in these cases. Disabling framedrop has logically absolutely nothing to do with these cases; it was overlooked in commit 918b06c4. So we always send the frame duration (or a guess for it), and check whether framedropping is actually enabled in the VO code. (It would be cleaner to send framedrop as a flag, but I don't care about that right now.) --- video/out/vo.c | 1 + 1 file changed, 1 insertion(+) (limited to 'video') diff --git a/video/out/vo.c b/video/out/vo.c index 0665eb7b80..5d6bab4aab 100644 --- a/video/out/vo.c +++ b/video/out/vo.c @@ -567,6 +567,7 @@ static bool render_frame(struct vo *vo) in->dropped_frame = duration >= 0 && end_time < next_vsync; in->dropped_frame &= !(vo->driver->caps & VO_CAP_FRAMEDROP); + in->dropped_frame &= !(vo->global->opts->frame_dropping & 1); // Even if we're hopelessly behind, rather degrade to 10 FPS playback, // instead of just freezing the display forever. in->dropped_frame &= mp_time_us() - in->last_flip < 100 * 1000; -- cgit v1.2.3