summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 13:18:55 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-11-18 13:18:55 +0000
commitaf25bb3acf76178d9472e575fa5e9db41f68ec94 (patch)
treefbb6337082a6321d2c72a896c4772540cddaf64e /libvo
parentaf366bff51545bd096935272384cd8a5653575ee (diff)
downloadmpv-af25bb3acf76178d9472e575fa5e9db41f68ec94.tar.bz2
mpv-af25bb3acf76178d9472e575fa5e9db41f68ec94.tar.xz
100l, the video_out_drivers list must be sorted by priority, not
alphabetically. For now, vo_directx should be preferred over vo_direct3d. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27956 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 6360bf79a0..d2209a5175 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -123,12 +123,12 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_TDFX_VID
&video_out_tdfx_vid,
#endif
-#ifdef CONFIG_DIRECT3D
- &video_out_direct3d,
-#endif
#ifdef CONFIG_DIRECTX
&video_out_directx,
#endif
+#ifdef CONFIG_DIRECT3D
+ &video_out_direct3d,
+#endif
#ifdef CONFIG_COREVIDEO
&video_out_macosx,
#endif