Mercurial > SDL_sound_CoreAudio
comparison SDL_sound.c @ 322:31cc49d7d0ce
MacOS fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 29 Apr 2002 06:12:47 +0000 |
parents | d62c05322a3e |
children | 5a72981b8cba |
comparison
equal
deleted
inserted
replaced
321:182fdc76060d | 322:31cc49d7d0ce |
---|---|
97 | 97 |
98 #if (defined SOUND_SUPPORTS_FLAC) | 98 #if (defined SOUND_SUPPORTS_FLAC) |
99 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_FLAC; | 99 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_FLAC; |
100 #endif | 100 #endif |
101 | 101 |
102 | 102 #if (defined SOUND_SUPPORTS_QUICKTIME) |
103 extern const Sound_DecoderFunctions __Sound_DecoderFunctions_QuickTime; | |
104 #endif | |
103 | 105 |
104 typedef struct | 106 typedef struct |
105 { | 107 { |
106 int available; | 108 int available; |
107 const Sound_DecoderFunctions *funcs; | 109 const Sound_DecoderFunctions *funcs; |
157 { 0, &__Sound_DecoderFunctions_FLAC }, | 159 { 0, &__Sound_DecoderFunctions_FLAC }, |
158 #endif | 160 #endif |
159 | 161 |
160 #if (defined SOUND_SUPPORTS_MIDI) | 162 #if (defined SOUND_SUPPORTS_MIDI) |
161 { 0, &__Sound_DecoderFunctions_MIDI }, | 163 { 0, &__Sound_DecoderFunctions_MIDI }, |
164 #endif | |
165 | |
166 #if (defined SOUND_SUPPORTS_QUICKTIME) | |
167 { 0, &__Sound_DecoderFunctions_QuickTime }, | |
162 #endif | 168 #endif |
163 | 169 |
164 { 0, NULL } | 170 { 0, NULL } |
165 }; | 171 }; |
166 | 172 |