From af25bb3acf76178d9472e575fa5e9db41f68ec94 Mon Sep 17 00:00:00 2001 From: reimar Date: Tue, 18 Nov 2008 13:18:55 +0000 Subject: [PATCH] 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 --- libvo/video_out.c | 6 +++--- 1 file 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