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

fix compilation without openal

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17635 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
aurel 2006-02-16 22:35:04 +00:00
parent 8424c24317
commit acf99ed75b

View File

@ -31,7 +31,9 @@ extern ao_functions_t audio_out_polyp;
#ifdef USE_JACK
extern ao_functions_t audio_out_jack;
#endif
#ifdef USE_OPENAL
extern ao_functions_t audio_out_openal;
#endif
extern ao_functions_t audio_out_null;
#ifdef HAVE_ALSA5
extern ao_functions_t audio_out_alsa5;
@ -121,7 +123,9 @@ ao_functions_t* audio_out_drivers[] =
#ifdef HAVE_SDL
&audio_out_sdl,
#endif
#ifdef USE_OPENAL
&audio_out_openal,
#endif
&audio_out_null,
// should not be auto-selected:
&audio_out_pcm,