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

fixed HAVE_ALSA5 var. bug. sorry :(

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1008 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
pontscho 2001-06-04 18:42:31 +00:00
parent 29914aafd0
commit 9e143e2a39

View File

@ -18,8 +18,10 @@ int ao_buffersize=-1;
extern ao_functions_t audio_out_oss;
//extern ao_functions_t audio_out_ossold;
extern ao_functions_t audio_out_null;
extern ao_functions_t audio_out_alsa5;
extern ao_functions_t audio_out_alsa9;
#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_SDL
extern ao_functions_t audio_out_sdl;
@ -29,7 +31,9 @@ ao_functions_t* audio_out_drivers[] =
{
&audio_out_oss,
&audio_out_null,
#ifdef HAVE_ALSA5
&audio_out_alsa5,
#endif
// &audio_out_alsa9,
// &audio_out_esd,
#ifdef HAVE_SDL