summaryrefslogtreecommitdiffstats
path: root/libvo
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-04 19:36:12 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-04 19:36:12 +0000
commit1fc371c73a9eb02413f3821f56c3175095236592 (patch)
tree1101fd5100ad7be50d0a641796ffa921f4b65349 /libvo
parentb7d2e203d8716a64a47f3a1e5f9ef0256e6fb83a (diff)
downloadmpv-1fc371c73a9eb02413f3821f56c3175095236592.tar.bz2
mpv-1fc371c73a9eb02413f3821f56c3175095236592.tar.xz
move the file writers after vo_null so they don't get autoselected - following the same logic as in libao2
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13552 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r--libvo/video_out.c27
1 files changed, 13 insertions, 14 deletions
diff --git a/libvo/video_out.c b/libvo/video_out.c
index 44dcbd07cb..a7b7a589e2 100644
--- a/libvo/video_out.c
+++ b/libvo/video_out.c
@@ -203,20 +203,6 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_BL
&video_out_bl,
#endif
-
-#ifdef HAVE_PNG
- &video_out_png,
-#endif
-#ifdef HAVE_JPEG
- &video_out_jpeg,
-#endif
-#ifdef HAVE_GIF
- &video_out_gif89a,
-#endif
- &video_out_null,
-// &video_out_odivx,
- &video_out_mpegpes,
- &video_out_yuv4mpeg,
#ifdef HAVE_VESA
&video_out_vesa,
#endif
@@ -235,6 +221,19 @@ vo_functions_t* video_out_drivers[] =
#endif
&video_out_cvidix,
#endif
+ &video_out_null,
+ // should not be auto-selected
+ &video_out_mpegpes,
+ &video_out_yuv4mpeg,
+#ifdef HAVE_PNG
+ &video_out_png,
+#endif
+#ifdef HAVE_JPEG
+ &video_out_jpeg,
+#endif
+#ifdef HAVE_GIF
+ &video_out_gif89a,
+#endif
#ifdef HAVE_TGA
&video_out_tga,
#endif