Mercurial > sdl-ios-xcode
changeset 3817:103bbe13f5eb SDL-ryan-multiple-audio-device
Patched to compile.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Fri, 06 Oct 2006 04:49:48 +0000 |
parents | 9d070c1a45fa |
children | 49eadd6e8962 |
files | src/audio/dma/SDL_dmaaudio.c src/audio/dsp/SDL_dspaudio.c |
diffstat | 2 files changed, 44 insertions(+), 46 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audio/dma/SDL_dmaaudio.c Fri Oct 06 04:46:58 2006 +0000 +++ b/src/audio/dma/SDL_dmaaudio.c Fri Oct 06 04:49:48 2006 +0000 @@ -218,9 +218,26 @@ } +static void +DMA_CloseDevice(_THIS) +{ + if (this->hidden != NULL) { + if (dma_buf != NULL) { + munmap(dma_buf, dma_len); + dma_buf = NULL; + } + if (audio_fd >= 0) { + close(audio_fd); + audio_fd = -1; + } + SDL_free(this->hidden); + this->hidden = NULL; + } +} + static int -open_device_internal(_THIS, const char *devname, int iscapture) +DMA_OpenDevice(_THIS, const char *devname, int iscapture) { const int flags = ((iscapture) ? OPEN_FLAGS_INPUT : OPEN_FLAGS_OUTPUT); int format; @@ -249,10 +266,10 @@ } SDL_memset(this->hidden, 0, (sizeof *this->hidden)); - /* Open the audio device */ audio_fd = open(devname, flags, 0); if (audio_fd < 0) { + DMA_CloseDevice(this); SDL_SetError("Couldn't open %s: %s", devname, strerror(errno)); return 0; } @@ -261,6 +278,7 @@ /* Get a list of supported hardware formats */ if (ioctl(audio_fd, SNDCTL_DSP_GETFMTS, &value) < 0) { + DMA_CloseDevice(this); SDL_SetError("Couldn't get audio format list"); return 0; } @@ -312,6 +330,7 @@ } } if (format == 0) { + DMA_CloseDevice(this); SDL_SetError("Couldn't find any hardware audio formats"); return 0; } @@ -320,6 +339,7 @@ /* Set the audio format */ value = format; if ((ioctl(audio_fd, SNDCTL_DSP_SETFMT, &value) < 0) || (value != format)) { + DMA_CloseDevice(this); SDL_SetError("Couldn't set audio format"); return 0; } @@ -338,12 +358,14 @@ once we know what format and channels are supported */ if (DMA_ReopenAudio(this, devname, format, stereo) < 0) { + DMA_CloseDevice(this); /* Error is set by DMA_ReopenAudio() */ return 0; } /* Memory map the audio buffer */ if (ioctl(audio_fd, SNDCTL_DSP_GETOSPACE, &info) < 0) { + DMA_CloseDevice(this); SDL_SetError("Couldn't get OSPACE parameters"); return 0; } @@ -355,6 +377,7 @@ dma_buf = (Uint8 *) mmap(NULL, dma_len, PROT_WRITE, MAP_SHARED, audio_fd, 0); if (dma_buf == MAP_FAILED) { + DMA_CloseDevice(this); SDL_SetError("DMA memory map failed"); dma_buf = NULL; return 0; @@ -376,6 +399,7 @@ ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &value); value = PCM_ENABLE_OUTPUT; if (ioctl(audio_fd, SNDCTL_DSP_SETTRIGGER, &value) < 0) { + DMA_CloseDevice(this); SDL_SetError("Couldn't trigger audio output"); return 0; } @@ -387,17 +411,6 @@ return 1; } -static int -DMA_OpenDevice(_THIS, const char *devname, int iscapture) -{ - int retval = open_device_internal(this, devname, iscapture); - if (!retval) - DMA_CloseDevice(this); /* !!! FIXME: do this at higher level. */ - return retval; -} - - - /* This function waits until it is possible to write a full sound buffer */ static void @@ -505,22 +518,6 @@ return (dma_buf + (filling * this->spec.size)); } -static void -DMA_CloseDevice(_THIS) -{ - if (this->hidden != NULL) { - if (dma_buf != NULL) { - munmap(dma_buf, dma_len); - dma_buf = NULL; - } - if (audio_fd >= 0) { - close(audio_fd); - audio_fd = -1; - } - SDL_free(this->hidden); - this->hidden = NULL; - } -} static int DMA_Init(SDL_AudioDriverImpl *impl)
--- a/src/audio/dsp/SDL_dspaudio.c Fri Oct 06 04:46:58 2006 +0000 +++ b/src/audio/dsp/SDL_dspaudio.c Fri Oct 06 04:49:48 2006 +0000 @@ -140,6 +140,24 @@ } +static void +DSP_CloseDevice(_THIS) +{ + if (this->hidden != NULL) { + if (this->hidden->mixbuf != NULL) { + SDL_FreeAudioMem(this->hidden->mixbuf); + this->hidden->mixbuf = NULL; + } + if (this->hidden->audio_fd >= 0) { + close(this->hidden->audio_fd); + this->hidden->audio_fd = -1; + } + SDL_free(this->hidden); + this->hidden = NULL; + } +} + + static int DSP_OpenDevice(_THIS, const char *devname, int iscapture) { @@ -352,23 +370,6 @@ return (this->hidden->mixbuf); } -static void -DSP_CloseDevice(_THIS) -{ - if (this->hidden != NULL) { - if (this->hidden->mixbuf != NULL) { - SDL_FreeAudioMem(this->hidden->mixbuf); - this->hidden->mixbuf = NULL; - } - if (this->hidden->audio_fd >= 0) { - close(this->hidden->audio_fd); - this->hidden->audio_fd = -1; - } - SDL_free(this->hidden); - this->hidden = NULL; - } -} - static int DSP_Init(SDL_AudioDriverImpl *impl) {