Mercurial > SDL_sound_CoreAudio
comparison decoders/aiff.c @ 149:1df5c106504e
Decoders can now list multiple file extensions.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 01 Nov 2001 19:13:17 +0000 |
parents | 1b36803660bc |
children | db3f0ee7aac0 |
comparison
equal
deleted
inserted
replaced
148:d51546293fd1 | 149:1df5c106504e |
---|---|
61 static void AIFF_quit(void); | 61 static void AIFF_quit(void); |
62 static int AIFF_open(Sound_Sample *sample, const char *ext); | 62 static int AIFF_open(Sound_Sample *sample, const char *ext); |
63 static void AIFF_close(Sound_Sample *sample); | 63 static void AIFF_close(Sound_Sample *sample); |
64 static Uint32 AIFF_read(Sound_Sample *sample); | 64 static Uint32 AIFF_read(Sound_Sample *sample); |
65 | 65 |
66 static const char *extensions_aiff[] = { "AIFF", NULL }; | |
66 const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF = | 67 const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF = |
67 { | 68 { |
68 { | 69 { |
69 "AIFF", | 70 extensions_aiff, |
70 "Audio Interchange File Format", | 71 "Audio Interchange File Format", |
71 "Torbjörn Andersson <d91tan@Update.UU.SE>", | 72 "Torbjörn Andersson <d91tan@Update.UU.SE>", |
72 "http://www.icculus.org/SDL_sound/" | 73 "http://www.icculus.org/SDL_sound/" |
73 }, | 74 }, |
74 | 75 |