summaryrefslogtreecommitdiffstats
path: root/libvo/video_out.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2009-09-19 00:25:36 +0300
committerUoti Urpala <uau@glyph.nonexistent.invalid>2009-09-19 00:25:36 +0300
commitc2d0a9c8a78b20ed8e96ff5a7d3e8c936b82cae1 (patch)
tree30aec70e7dd212d9f23a42c215f156546308796b /libvo/video_out.c
parent3c70c5dc955bb0d5b67e831d98d1db95fbb03f9e (diff)
downloadmpv-c2d0a9c8a78b20ed8e96ff5a7d3e8c936b82cae1.tar.bz2
mpv-c2d0a9c8a78b20ed8e96ff5a7d3e8c936b82cae1.tar.xz
VO: Prefer vo_vdpau over vo_xv again
vo_vdpau should now be fixed enough that it's a clearly better choice than vo_xv.
Diffstat (limited to 'libvo/video_out.c')
-rw-r--r--libvo/video_out.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index b6506406c3..541b231ffe 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -165,12 +165,12 @@ const struct vo_driver *video_out_drivers[] =
#ifdef CONFIG_3DFX
&video_out_3dfx,
#endif
-#ifdef CONFIG_XV
- &video_out_xv,
-#endif
#if CONFIG_VDPAU
&video_out_vdpau,
#endif
+#ifdef CONFIG_XV
+ &video_out_xv,
+#endif
#ifdef CONFIG_X11
&video_out_x11,
&video_out_xover,