0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02: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
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