From f316f639105ebf5cc7bf29cc97d555bf425f7b4e Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 30 May 2010 13:50:14 +0000 Subject: [PATCH] Prefer -vo sdl over "probably software" OpenGL. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31283 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 de6fcfd8e4..a014833e98 100644 --- a/libvo/video_out.c +++ b/libvo/video_out.c @@ -194,6 +194,9 @@ const vo_functions_t* const video_out_drivers[] = &video_out_x11, &video_out_xover, #endif +#ifdef CONFIG_SDL + &video_out_sdl, +#endif #ifdef CONFIG_GL &video_out_gl, &video_out_gl2, @@ -201,9 +204,6 @@ const vo_functions_t* const video_out_drivers[] = #ifdef CONFIG_DGA &video_out_dga, #endif -#ifdef CONFIG_SDL - &video_out_sdl, -#endif #ifdef CONFIG_GGI &video_out_ggi, #endif -- 2.11.4.GIT