mirror of
https://github.com/mpv-player/mpv
synced 2024-12-23 23:32:26 +00: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:
parent
7217b681da
commit
b5d25351fe
@ -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,
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user