summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-30 13:50:14 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-05-30 13:50:14 +0000
commitf316f639105ebf5cc7bf29cc97d555bf425f7b4e (patch)
treee57238e8ae1a342a1b85f971669ffddda33d60e6 /libvo
parent3ae81e84beba561133d1b4881c7a6584102b6687 (diff)
downloadmpv-f316f639105ebf5cc7bf29cc97d555bf425f7b4e.tar.bz2
mpv-f316f639105ebf5cc7bf29cc97d555bf425f7b4e.tar.xz
Prefer -vo sdl over "probably software" OpenGL.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31283 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 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