Mercurial > SDL_sound_CoreAudio
comparison decoders/ogg.c @ 106:40de367eb59e
Changing my include structure to do this right.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 03 Oct 2001 18:29:32 +0000 |
parents | 103cfcb3c014 |
children | 095a066b2cd2 |
comparison
equal
deleted
inserted
replaced
105:de42ca5599ac | 106:40de367eb59e |
---|---|
30 * Please see the file LICENSE in the source's root directory. | 30 * Please see the file LICENSE in the source's root directory. |
31 * | 31 * |
32 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) | 32 * This file written by Ryan C. Gordon. (icculus@clutteredmind.org) |
33 */ | 33 */ |
34 | 34 |
35 #include "SDL_sound.h" | 35 #if HAVE_CONFIG_H |
36 | 36 # include <config.h> |
37 #define __SDL_SOUND_INTERNAL__ | 37 #endif |
38 #include "SDL_sound_internal.h" | |
39 | 38 |
40 #ifdef SOUND_SUPPORTS_OGG | 39 #ifdef SOUND_SUPPORTS_OGG |
41 | 40 |
42 #include <stdio.h> | 41 #include <stdio.h> |
43 #include <stdlib.h> | 42 #include <stdlib.h> |
44 #include <string.h> | 43 #include <string.h> |
45 #include <math.h> | 44 #include <math.h> |
46 #include <assert.h> | 45 #include <assert.h> |
46 | |
47 #include "SDL_sound.h" | |
48 | |
49 #define __SDL_SOUND_INTERNAL__ | |
50 #include "SDL_sound_internal.h" | |
51 | |
47 #include "vorbis/codec.h" | 52 #include "vorbis/codec.h" |
48 #include "vorbis/vorbisfile.h" | 53 #include "vorbis/vorbisfile.h" |
49 | 54 |
50 | 55 |
51 static int OGG_init(void); | 56 static int OGG_init(void); |