1
0
mirror of https://github.com/mpv-player/mpv synced 2025-02-17 13:17:13 +00:00

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:
pontscho 2001-06-05 10:37:50 +00:00
parent 2354aadb28
commit 9bfe5d6141

View File

@ -21,8 +21,14 @@ extern ao_functions_t audio_out_null;
#ifdef HAVE_ALSA5 #ifdef HAVE_ALSA5
extern ao_functions_t audio_out_alsa5; extern ao_functions_t audio_out_alsa5;
#endif #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 #ifdef HAVE_SDL
extern ao_functions_t audio_out_sdl; extern ao_functions_t audio_out_sdl;
#endif #endif
@ -34,8 +40,14 @@ ao_functions_t* audio_out_drivers[] =
#ifdef HAVE_ALSA5 #ifdef HAVE_ALSA5
&audio_out_alsa5, &audio_out_alsa5,
#endif #endif
// &audio_out_alsa9, /*
// &audio_out_esd, #ifdef HAVE_ALSA9
&audio_out_alsa9,
#endif
#ifdef HAVE_ESD
&audio_out_esd,
#endif
*/
#ifdef HAVE_SDL #ifdef HAVE_SDL
&audio_out_sdl, &audio_out_sdl,
#endif #endif