summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 05:10:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-01-03 05:10:44 +0000
commitb5d25351fe27d3f115e063de469195a288238527 (patch)
tree5445514e840b32257ba76791e86f4771a9504037 /libvo
parent7217b681da533b7cf56293c513d528f89517fa75 (diff)
downloadmpv-b5d25351fe27d3f115e063de469195a288238527.tar.bz2
mpv-b5d25351fe27d3f115e063de469195a288238527.tar.xz
Rearrange the vo and ao driver order to prefer the native drivers and give
a better out of the box experience on Cygwin. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8730 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 d86777f886..a717435bf2 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -102,6 +102,9 @@ extern vo_functions_t video_out_xvidix;
vo_functions_t* video_out_drivers[] =
{
+#ifdef HAVE_DIRECTX
+ &video_out_directx,
+#endif
#ifdef HAVE_XMGA
&video_out_xmga,
#endif
@@ -134,9 +137,6 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_SDL
&video_out_sdl,
#endif
-#ifdef HAVE_DIRECTX
- &video_out_directx,
-#endif
#ifdef HAVE_GGI
&video_out_ggi,
#endif