summaryrefslogtreecommitdiffstats
path: root/video/out/vo.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo.c')
-rw-r--r--video/out/vo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/video/out/vo.c b/video/out/vo.c
index 0957f71813..0665eb7b80 100644
--- a/video/out/vo.c
+++ b/video/out/vo.c
@@ -562,8 +562,7 @@ static bool render_frame(struct vo *vo)
int64_t next_vsync = prev_sync(vo, mp_time_us()) + in->vsync_interval;
int64_t end_time = pts + duration;
- if (!(vo->global->opts->frame_dropping & 1) || !in->hasframe_rendered ||
- vo->driver->untimed || vo->driver->encode)
+ if (!in->hasframe_rendered)
duration = -1; // disable framedrop
in->dropped_frame = duration >= 0 && end_time < next_vsync;