Mercurial > sdl-ios-xcode
diff src/audio/macosx/SDL_coreaudio.c @ 3795:589bc3d060cd SDL-ryan-multiple-audio-device
More 1.3 audio work...moved dsp and dma drivers over to new model. Untested!
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 04 Oct 2006 06:00:10 +0000 |
parents | 866c310e2cb5 |
children | b19680c84cdf |
line wrap: on
line diff
--- a/src/audio/macosx/SDL_coreaudio.c Tue Oct 03 23:45:36 2006 +0000 +++ b/src/audio/macosx/SDL_coreaudio.c Wed Oct 04 06:00:10 2006 +0000 @@ -356,25 +356,25 @@ /* Dummy functions -- we don't use thread-based audio */ -void +static void COREAUDIO_WaitDevice(_THIS) { return; } -void +static void COREAUDIO_PlayDevice(_THIS) { return; } -Uint8 * +static Uint8 * COREAUDIO_GetDeviceBuf(_THIS) { return (NULL); } -void +static void COREAUDIO_CloseDevice(_THIS) { if (this->hidden != NULL) { @@ -555,7 +555,7 @@ } -int +static int COREAUDIO_OpenDevice(_THIS, const char *devname, int iscapture) { AudioStreamBasicDescription strdesc;