Mercurial > SDL_sound_CoreAudio
comparison decoders/flac.c @ 443:30f96c853462
MacOS X build fixes.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 31 Jan 2003 05:17:46 +0000 |
parents | 5b06e23d934e |
children | c66080364dff c5f184b4b2cd |
comparison
equal
deleted
inserted
replaced
442:6800c239cc93 | 443:30f96c853462 |
---|---|
42 #include "SDL_sound.h" | 42 #include "SDL_sound.h" |
43 | 43 |
44 #define __SDL_SOUND_INTERNAL__ | 44 #define __SDL_SOUND_INTERNAL__ |
45 #include "SDL_sound_internal.h" | 45 #include "SDL_sound_internal.h" |
46 | 46 |
47 #include "FLAC/seekable_stream_decoder.h" | 47 #include <FLAC/seekable_stream_decoder.h> |
48 | 48 |
49 #define D_END_OF_STREAM FLAC__SEEKABLE_STREAM_DECODER_END_OF_STREAM | 49 #define D_END_OF_STREAM FLAC__SEEKABLE_STREAM_DECODER_END_OF_STREAM |
50 | 50 |
51 #define d_new() FLAC__seekable_stream_decoder_new() | 51 #define d_new() FLAC__seekable_stream_decoder_new() |
52 #define d_init(x) FLAC__seekable_stream_decoder_init(x) | 52 #define d_init(x) FLAC__seekable_stream_decoder_init(x) |