0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

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
This commit is contained in:
alex 2004-10-04 19:36:12 +00:00
parent b7d2e203d8
commit 1fc371c73a

View File

@ -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
@ -234,6 +220,19 @@ vo_functions_t* video_out_drivers[] =
&video_out_winvidix,
#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,