[MPlayer-cvslog] CVS: main/libao2 audio_out.c,1.52,1.53

Aurelien Jacobs CVS syncmail at mplayerhq.hu
Thu Feb 16 23:35:06 CET 2006


CVS change done by Aurelien Jacobs CVS

Update of /cvsroot/mplayer/main/libao2
In directory mail:/var2/tmp/cvs-serv28367/libao2

Modified Files:
	audio_out.c 
Log Message:
fix compilation without openal

Index: audio_out.c
===================================================================
RCS file: /cvsroot/mplayer/main/libao2/audio_out.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- audio_out.c	16 Feb 2006 20:45:25 -0000	1.52
+++ audio_out.c	16 Feb 2006 22:35:04 -0000	1.53
@@ -31,7 +31,9 @@
 #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 @@
 #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,




More information about the MPlayer-cvslog mailing list