Mercurial > SDL_sound_CoreAudio
comparison 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 |
comparison
equal
deleted
inserted
replaced
215:9bafd3e8276e | 216:07d0939d40e7 |
---|---|
65 | 65 |
66 #if (defined SOUND_SUPPORTS_AIFF) | 66 #if (defined SOUND_SUPPORTS_AIFF) |
67 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF; | 67 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF; |
68 #endif | 68 #endif |
69 | 69 |
70 #if (defined SOUND_SUPPORTS_AU) | |
71 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_AU; | |
72 #endif | |
73 | |
70 #if (defined SOUND_SUPPORTS_OGG) | 74 #if (defined SOUND_SUPPORTS_OGG) |
71 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_OGG; | 75 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_OGG; |
72 #endif | 76 #endif |
73 | 77 |
74 #if (defined SOUND_SUPPORTS_VOC) | 78 #if (defined SOUND_SUPPORTS_VOC) |
117 { 0, &__Sound_DecoderFunctions_WAV }, | 121 { 0, &__Sound_DecoderFunctions_WAV }, |
118 #endif | 122 #endif |
119 | 123 |
120 #if (defined SOUND_SUPPORTS_AIFF) | 124 #if (defined SOUND_SUPPORTS_AIFF) |
121 { 0, &__Sound_DecoderFunctions_AIFF }, | 125 { 0, &__Sound_DecoderFunctions_AIFF }, |
126 #endif | |
127 | |
128 #if (defined SOUND_SUPPORTS_AU) | |
129 { 0, &__Sound_DecoderFunctions_AU }, | |
122 #endif | 130 #endif |
123 | 131 |
124 #if (defined SOUND_SUPPORTS_OGG) | 132 #if (defined SOUND_SUPPORTS_OGG) |
125 { 0, &__Sound_DecoderFunctions_OGG }, | 133 { 0, &__Sound_DecoderFunctions_OGG }, |
126 #endif | 134 #endif |