Mercurial > SDL_sound_CoreAudio
comparison decoders/aiff.c @ 535:45ee760a6f5a stable-1.0
Converted all text encoding from ISO-8859-1 to UTF-8.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Thu, 17 Apr 2008 18:06:53 +0000 |
parents | 9d0b5ec9cc26 |
children |
comparison
equal
deleted
inserted
replaced
533:cad2940e992f | 535:45ee760a6f5a |
---|---|
36 * standard; basically the parts of it that I can easily understand and test. | 36 * standard; basically the parts of it that I can easily understand and test. |
37 * It's a start, though. | 37 * It's a start, though. |
38 * | 38 * |
39 * Please see the file COPYING in the source's root directory. | 39 * Please see the file COPYING in the source's root directory. |
40 * | 40 * |
41 * This file was written by Torbjörn Andersson. (d91tan@Update.UU.SE) | 41 * This file was written by Torbjörn Andersson. (d91tan@Update.UU.SE) |
42 */ | 42 */ |
43 | 43 |
44 #if HAVE_CONFIG_H | 44 #if HAVE_CONFIG_H |
45 # include <config.h> | 45 # include <config.h> |
46 #endif | 46 #endif |
71 const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF = | 71 const Sound_DecoderFunctions __Sound_DecoderFunctions_AIFF = |
72 { | 72 { |
73 { | 73 { |
74 extensions_aiff, | 74 extensions_aiff, |
75 "Audio Interchange File Format", | 75 "Audio Interchange File Format", |
76 "Torbjörn Andersson <d91tan@Update.UU.SE>", | 76 "Torbjörn Andersson <d91tan@Update.UU.SE>", |
77 "http://www.icculus.org/SDL_sound/" | 77 "http://www.icculus.org/SDL_sound/" |
78 }, | 78 }, |
79 | 79 |
80 AIFF_init, /* init() method */ | 80 AIFF_init, /* init() method */ |
81 AIFF_quit, /* quit() method */ | 81 AIFF_quit, /* quit() method */ |