summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 11:44:10 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-02-21 11:44:10 +0000
commitdb74aa4315402c814eca56b38516e135d1057562 (patch)
treec0b6191cfad4140353017e375661be71000cb690 /libvo
parentd7c0bde0e1f1286c5972626e2e965c892bfc8d6f (diff)
downloadmpv-db74aa4315402c814eca56b38516e135d1057562.tar.bz2
mpv-db74aa4315402c814eca56b38516e135d1057562.tar.xz
100l, place vdpau below xv, it should not normally be preferred for auto-selection (yet).
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28688 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-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 945759f0a8..69d6992210 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -170,12 +170,12 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_3DFX
&video_out_3dfx,
#endif
-#if CONFIG_VDPAU
- &video_out_vdpau,
-#endif
#ifdef CONFIG_XV
&video_out_xv,
#endif
+#if CONFIG_VDPAU
+ &video_out_vdpau,
+#endif
#ifdef CONFIG_X11
&video_out_x11,
&video_out_xover,