summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-31 22:06:40 +0000
committercehoyos <cehoyos@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-31 22:06:40 +0000
commita0dab6c1c0199756a00c6adfbcf4376baeff07fc (patch)
tree5c89673d20cc339a5c5813f0b1df38b3df4772ce
parent1c37a6427abef0827c608d328d37ca1b1a0a022d (diff)
downloadmpv-a0dab6c1c0199756a00c6adfbcf4376baeff07fc.tar.bz2
mpv-a0dab6c1c0199756a00c6adfbcf4376baeff07fc.tar.xz
Prefer vo vdpau over vo xv where available.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29118 b3059339-0415-0410-9bf9-f77b7e298cf2
-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 fac5ed90c9..81f938b301 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -174,12 +174,12 @@ const vo_functions_t* const 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,