diff SDL_sound.c @ 216:07d0939d40e7

Support for .AU files added.
author Ryan C. Gordon <icculus@icculus.org>
date Sun, 13 Jan 2002 19:51:14 +0000
parents e63b9393f6ce
children ca3483f4cfec
line wrap: on
line diff
--- a/SDL_sound.c	Sun Jan 13 19:50:55 2002 +0000
+++ b/SDL_sound.c	Sun Jan 13 19:51:14 2002 +0000
@@ -67,6 +67,10 @@
 extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_AIFF;
 #endif
 
+#if (defined SOUND_SUPPORTS_AU)
+extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_AU;
+#endif
+
 #if (defined SOUND_SUPPORTS_OGG)
 extern const Sound_DecoderFunctions  __Sound_DecoderFunctions_OGG;
 #endif
@@ -121,6 +125,10 @@
     { 0, &__Sound_DecoderFunctions_AIFF },
 #endif
 
+#if (defined SOUND_SUPPORTS_AU)
+    { 0, &__Sound_DecoderFunctions_AU },
+#endif
+
 #if (defined SOUND_SUPPORTS_OGG)
     { 0, &__Sound_DecoderFunctions_OGG },
 #endif