Mercurial > SDL_sound_CoreAudio
comparison decoders/aiff.c @ 100:6d9fdec2f708
added config.h, added --enable-debug flag, various other changes to the build system
author | fingolfin |
---|---|
date | Wed, 03 Oct 2001 12:25:34 +0000 |
parents | 40006625142a |
children | 103cfcb3c014 |
comparison
equal
deleted
inserted
replaced
99:3f0beddfd9c9 | 100:6d9fdec2f708 |
---|---|
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 #ifdef SOUND_SUPPORTS_AIFF | 44 #ifdef SOUND_SUPPORTS_AIFF |
45 | 45 |
46 #define __SDL_SOUND_INTERNAL__ | |
47 #include "SDL_sound_internal.h" | |
48 | |
46 #include <stdio.h> | 49 #include <stdio.h> |
47 #include <stdlib.h> | 50 #include <stdlib.h> |
48 #include <string.h> | 51 #include <string.h> |
49 #include <assert.h> | 52 #include <assert.h> |
50 | 53 |
51 #include "SDL.h" | 54 #include "SDL.h" |
52 #include "SDL_endian.h" | 55 #include "SDL_endian.h" |
53 #include "SDL_sound.h" | 56 #include "SDL_sound.h" |
54 | |
55 #define __SDL_SOUND_INTERNAL__ | |
56 #include "SDL_sound_internal.h" | |
57 | 57 |
58 static int AIFF_init(void); | 58 static int AIFF_init(void); |
59 static void AIFF_quit(void); | 59 static void AIFF_quit(void); |
60 static int AIFF_open(Sound_Sample *sample, const char *ext); | 60 static int AIFF_open(Sound_Sample *sample, const char *ext); |
61 static void AIFF_close(Sound_Sample *sample); | 61 static void AIFF_close(Sound_Sample *sample); |