mirror of https://github.com/mpv-player/mpv
add esd support and disabled default.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1033 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
2354aadb28
commit
9bfe5d6141
|
@ -21,8 +21,14 @@ extern ao_functions_t audio_out_null;
|
|||
#ifdef HAVE_ALSA5
|
||||
extern ao_functions_t audio_out_alsa5;
|
||||
#endif
|
||||
//extern ao_functions_t audio_out_alsa9;
|
||||
extern ao_functions_t audio_out_esd;
|
||||
/*
|
||||
#ifdef HAVE_ALSA9
|
||||
extern ao_functions_t audio_out_alsa9;
|
||||
#endif
|
||||
#ifdef HAVE_ESD
|
||||
extern ao_functions_t audio_out_esd;
|
||||
#endif
|
||||
*/
|
||||
#ifdef HAVE_SDL
|
||||
extern ao_functions_t audio_out_sdl;
|
||||
#endif
|
||||
|
@ -34,8 +40,14 @@ ao_functions_t* audio_out_drivers[] =
|
|||
#ifdef HAVE_ALSA5
|
||||
&audio_out_alsa5,
|
||||
#endif
|
||||
// &audio_out_alsa9,
|
||||
// &audio_out_esd,
|
||||
/*
|
||||
#ifdef HAVE_ALSA9
|
||||
&audio_out_alsa9,
|
||||
#endif
|
||||
#ifdef HAVE_ESD
|
||||
&audio_out_esd,
|
||||
#endif
|
||||
*/
|
||||
#ifdef HAVE_SDL
|
||||
&audio_out_sdl,
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue