From 1fe64c61be426513aff24ea69dfa970939caa8b1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Wed, 25 Nov 2015 22:10:55 +0100 Subject: vo_opengl: disable interpolation without display-sync Without display-sync mode, our guesses wrt. vsync phase etc. are much worse, and I see no reason to keep the complicated "vsync_timed" code. --- video/out/vo_vdpau.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'video/out/vo_vdpau.c') diff --git a/video/out/vo_vdpau.c b/video/out/vo_vdpau.c index 72a08adac7..54f95c61e9 100644 --- a/video/out/vo_vdpau.c +++ b/video/out/vo_vdpau.c @@ -302,7 +302,7 @@ static void resize(struct vo *vo) vc->flip_offset_us = vo->opts->fullscreen ? 1000LL * vc->flip_offset_fs : 1000LL * vc->flip_offset_window; - vo_set_queue_params(vo, vc->flip_offset_us, false, 1); + vo_set_queue_params(vo, vc->flip_offset_us, 1); if (vc->output_surface_w < vo->dwidth || vc->output_surface_h < vo->dheight) { vc->output_surface_w = s_size(max_w, vc->output_surface_w, vo->dwidth); -- cgit v1.2.3