comparison decoders/mp3.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
27 * Please see the file LICENSE in the source's root directory. 27 * Please see the file LICENSE in the source's root directory.
28 * 28 *
29 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) 29 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org)
30 */ 30 */
31 31
32 #ifdef SOUND_SUPPORTS_MP3 32 #include "SDL_sound.h"
33 33
34 #define __SDL_SOUND_INTERNAL__ 34 #define __SDL_SOUND_INTERNAL__
35 #include "SDL_sound_internal.h" 35 #include "SDL_sound_internal.h"
36
37 #ifdef SOUND_SUPPORTS_MP3
36 38
37 #include <stdio.h> 39 #include <stdio.h>
38 #include <stdlib.h> 40 #include <stdlib.h>
39 #include <string.h> 41 #include <string.h>
40 #include <assert.h> 42 #include <assert.h>
41 43
42 #include "smpeg.h" 44 #include "smpeg.h"
43 #include "SDL_sound.h"
44 #include "extra_rwops.h" 45 #include "extra_rwops.h"
45 46
46 47
47 static int MP3_init(void); 48 static int MP3_init(void);
48 static void MP3_quit(void); 49 static void MP3_quit(void);