mirror of https://github.com/mpv-player/mpv
fix compilation without openal
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@17635 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8424c24317
commit
acf99ed75b
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue