diff libao2/audio_out.c @ 17633:e0ef5688cce7

OpenAL audio support, actual output is mono-only (no positioning yet).
author reimar
date Thu, 16 Feb 2006 20:45:25 +0000
parents f580a7755ac5
children 8dc8353c4ee8
line wrap: on
line diff
--- a/libao2/audio_out.c	Thu Feb 16 12:55:23 2006 +0000
+++ b/libao2/audio_out.c	Thu Feb 16 20:45:25 2006 +0000
@@ -31,6 +31,7 @@
 #ifdef USE_JACK
 extern ao_functions_t audio_out_jack;
 #endif
+extern ao_functions_t audio_out_openal;
 extern ao_functions_t audio_out_null;
 #ifdef HAVE_ALSA5
  extern ao_functions_t audio_out_alsa5;
@@ -120,6 +121,7 @@
 #ifdef HAVE_SDL
         &audio_out_sdl,
 #endif
+        &audio_out_openal,
         &audio_out_null,
 // should not be auto-selected:
 	&audio_out_pcm,