summaryrefslogtreecommitdiffstats
path: root/video/out/vo_vdpau.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-11-25 22:10:55 +0100
committerwm4 <wm4@nowhere>2015-11-25 22:10:55 +0100
commit1fe64c61be426513aff24ea69dfa970939caa8b1 (patch)
tree1cb85f2be9ab131049711b7f59af131463e2f89f /video/out/vo_vdpau.c
parent772961f0ceb091f099eec03e2e8a3a2b354aa18f (diff)
downloadmpv-1fe64c61be426513aff24ea69dfa970939caa8b1.tar.bz2
mpv-1fe64c61be426513aff24ea69dfa970939caa8b1.tar.xz
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.
Diffstat (limited to 'video/out/vo_vdpau.c')
-rw-r--r--video/out/vo_vdpau.c2
1 files changed, 1 insertions, 1 deletions
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);