comparison decoders/aiff.c @ 104:103cfcb3c014

Updated to fix build system problem.
author Ryan C. Gordon <icculus@icculus.org>
date Wed, 03 Oct 2001 18:15:52 +0000
parents 6d9fdec2f708
children 40de367eb59e
comparison
equal deleted inserted replaced
103:706ec5842737 104:103cfcb3c014
39 * Please see the file LICENSE in the source's root directory. 39 * Please see the file LICENSE 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 #ifdef SOUND_SUPPORTS_AIFF 44 #include "SDL_sound.h"
45 45
46 #define __SDL_SOUND_INTERNAL__ 46 #define __SDL_SOUND_INTERNAL__
47 #include "SDL_sound_internal.h" 47 #include "SDL_sound_internal.h"
48
49 #ifdef SOUND_SUPPORTS_AIFF
48 50
49 #include <stdio.h> 51 #include <stdio.h>
50 #include <stdlib.h> 52 #include <stdlib.h>
51 #include <string.h> 53 #include <string.h>
52 #include <assert.h> 54 #include <assert.h>
53 55
54 #include "SDL.h" 56 #include "SDL.h"
55 #include "SDL_endian.h" 57 #include "SDL_endian.h"
56 #include "SDL_sound.h"
57 58
58 static int AIFF_init(void); 59 static int AIFF_init(void);
59 static void AIFF_quit(void); 60 static void AIFF_quit(void);
60 static int AIFF_open(Sound_Sample *sample, const char *ext); 61 static int AIFF_open(Sound_Sample *sample, const char *ext);
61 static void AIFF_close(Sound_Sample *sample); 62 static void AIFF_close(Sound_Sample *sample);