diff SDL_sound.c @ 450:6d328f00c20d

Added Speex decoder.
author Ryan C. Gordon <icculus@icculus.org>
date Sat, 13 Sep 2003 20:28:39 +0000
parents d0393837bfac
children 3e705c9180e5 50bb9a6cebfe
line wrap: on
line diff
--- a/SDL_sound.c	Sat Sep 13 20:27:33 2003 +0000
+++ b/SDL_sound.c	Sat Sep 13 20:28:39 2003 +0000
@@ -103,6 +103,10 @@
 extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_QuickTime;
 #endif
 
+#if (defined SOUND_SUPPORTS_SPEEX)
+extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_SPEEX;
+#endif
+
 typedef struct
 {
     int available;
@@ -167,6 +171,10 @@
     { 0, &__Sound_DecoderFunctions_QuickTime },
 #endif
 
+#if (defined SOUND_SUPPORTS_SPEEX)
+    { 0, &__Sound_DecoderFunctions_SPEEX },
+#endif
+
     { 0, NULL }
 };