summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-25 22:53:04 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-02-25 22:53:04 +0000
commite3e75ca06668778d014e539085032a44d1fe518c (patch)
tree8aac4ab9f5660d24164ee3ab7087e226d89c7352 /libvo
parent2b7b000b80a52b2ea9825e655ac7226dc0351acf (diff)
downloadmpv-e3e75ca06668778d014e539085032a44d1fe518c.tar.bz2
mpv-e3e75ca06668778d014e539085032a44d1fe518c.tar.xz
Reorder vos: prioritize -vo gl above -vo x11 and -vo matrixview down with aa, caca etc.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30741 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 0d2dc713e5..b285458c87 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -186,17 +186,16 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_XV
&video_out_xv,
#endif
+#ifdef CONFIG_GL
+ &video_out_gl,
+#endif
#ifdef CONFIG_X11
&video_out_x11,
&video_out_xover,
#endif
#ifdef CONFIG_GL
- &video_out_gl,
&video_out_gl2,
#endif
-#ifdef CONFIG_MATRIXVIEW
- &video_out_matrixview,
-#endif
#ifdef CONFIG_DGA
&video_out_dga,
#endif
@@ -213,6 +212,9 @@ const vo_functions_t* const video_out_drivers[] =
#ifdef CONFIG_SVGALIB
&video_out_svga,
#endif
+#ifdef CONFIG_MATRIXVIEW
+ &video_out_matrixview,
+#endif
#ifdef CONFIG_AA
&video_out_aa,
#endif