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

Rearrange the vo and ao driver order to prefer the native drivers and give

a better out of the box experience on Cygwin.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8730 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2003-01-03 05:10:44 +00:00
parent 7217b681da
commit b5d25351fe
2 changed files with 6 additions and 6 deletions

View File

@ -60,6 +60,9 @@ ao_functions_t* audio_out_drivers[] =
&audio_out_dxr2,
#endif
// native:
#ifdef HAVE_WIN32WAVEOUT
&audio_out_win32,
#endif
#ifdef USE_OSS_AUDIO
&audio_out_oss,
#endif
@ -75,9 +78,6 @@ ao_functions_t* audio_out_drivers[] =
#ifdef USE_SUN_AUDIO
&audio_out_sun,
#endif
#ifdef HAVE_WIN32WAVEOUT
&audio_out_win32,
#endif
// wrappers:
#ifdef USE_ARTS
&audio_out_arts,

View File

@ -102,6 +102,9 @@ extern vo_functions_t video_out_xvidix;
vo_functions_t* video_out_drivers[] =
{
#ifdef HAVE_DIRECTX
&video_out_directx,
#endif
#ifdef HAVE_XMGA
&video_out_xmga,
#endif
@ -134,9 +137,6 @@ vo_functions_t* video_out_drivers[] =
#ifdef HAVE_SDL
&video_out_sdl,
#endif
#ifdef HAVE_DIRECTX
&video_out_directx,
#endif
#ifdef HAVE_GGI
&video_out_ggi,
#endif