diff options
author | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-08-13 19:36:14 -0700 |
commit | e0792912028d143b89b3835b2a7203693a494d0f (patch) | |
tree | 763e226941fbad9850b8cfc29d309d3c92ea6537 /Alc | |
parent | 826c641668a14c244bac30d61a681c6817461f80 (diff) |
Remove unnecessary function parameters
Diffstat (limited to 'Alc')
-rw-r--r-- | Alc/ALc.c | 3 | ||||
-rw-r--r-- | Alc/alsa.c | 14 | ||||
-rw-r--r-- | Alc/dsound.c | 5 | ||||
-rw-r--r-- | Alc/oss.c | 10 | ||||
-rw-r--r-- | Alc/portaudio.c | 5 | ||||
-rw-r--r-- | Alc/pulseaudio.c | 13 | ||||
-rw-r--r-- | Alc/wave.c | 5 | ||||
-rw-r--r-- | Alc/winmm.c | 8 |
8 files changed, 25 insertions, 38 deletions
@@ -541,12 +541,13 @@ ALCAPI ALCdevice* ALCAPIENTRY alcCaptureOpenDevice(const ALCchar *deviceName, AL pDevice->Frequency = frequency; pDevice->Format = format; + pDevice->BufferSize = SampleSize; SuspendContext(NULL); for(i = 0;BackendList[i].Init;i++) { pDevice->Funcs = &BackendList[i].Funcs; - if(ALCdevice_OpenCapture(pDevice, deviceName, frequency, format, SampleSize)) + if(ALCdevice_OpenCapture(pDevice, deviceName)) { pDevice->next = g_pDeviceList; g_pDeviceList = pDevice; @@ -549,7 +549,7 @@ static void alsa_stop_context(ALCdevice *device, ALCcontext *context) } -static ALCboolean alsa_open_capture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean alsa_open_capture(ALCdevice *pDevice, const ALCchar *deviceName) { snd_pcm_hw_params_t *p; snd_pcm_uframes_t bufferSizeInFrames; @@ -608,7 +608,7 @@ open_alsa: return ALC_FALSE; } - switch(aluBytesFromFormat(format)) + switch(aluBytesFromFormat(pDevice->Format)) { case 1: data->format = SND_PCM_FORMAT_U8; @@ -618,7 +618,7 @@ open_alsa: break; default: data->format = SND_PCM_FORMAT_UNKNOWN; - AL_PRINT("Unknown format?! %x\n", format); + AL_PRINT("Unknown format?! %x\n", pDevice->Format); } str = GetConfigValue("alsa", "mmap", "true"); @@ -628,7 +628,7 @@ open_alsa: atoi(str) != 0); err = NULL; - bufferSizeInFrames = SampleSize; + bufferSizeInFrames = pDevice->BufferSize; psnd_pcm_hw_params_malloc(&p); if(!allowmmap) @@ -648,7 +648,7 @@ open_alsa: if(err == NULL && (i=psnd_pcm_hw_params_set_channels(data->pcmHandle, p, aluChannelsFromFormat(pDevice->Format))) < 0) err = "set channels"; /* set rate (implicitly constrains period/buffer parameters) */ - if(err == NULL && (i=psnd_pcm_hw_params_set_rate(data->pcmHandle, p, frequency, 0)) < 0) + if(err == NULL && (i=psnd_pcm_hw_params_set_rate(data->pcmHandle, p, pDevice->Frequency, 0)) < 0) err = "set rate near"; /* set buffer size in frame units (implicitly sets period size/bytes/time and buffer time/bytes) */ if(err == NULL && (i=psnd_pcm_hw_params_set_buffer_size_min(data->pcmHandle, p, &bufferSizeInFrames)) < 0) @@ -674,7 +674,7 @@ open_alsa: if(err == NULL && (i=psnd_pcm_hw_params_set_channels(data->pcmHandle, p, aluChannelsFromFormat(pDevice->Format))) < 0) err = "set channels"; /* set rate (implicitly constrains period/buffer parameters) */ - if(err == NULL && (i=psnd_pcm_hw_params_set_rate(data->pcmHandle, p, frequency, 0)) < 0) + if(err == NULL && (i=psnd_pcm_hw_params_set_rate(data->pcmHandle, p, pDevice->Frequency, 0)) < 0) err = "set rate near"; /* set buffer size in frame units (implicitly sets period size/bytes/time and buffer time/bytes) */ if(err == NULL && (i=psnd_pcm_hw_params_set_buffer_size_near(data->pcmHandle, p, &bufferSizeInFrames)) < 0) @@ -716,7 +716,7 @@ open_alsa: ALuint frameSize = aluChannelsFromFormat(pDevice->Format); frameSize *= aluBytesFromFormat(pDevice->Format); - data->ring = CreateRingBuffer(frameSize, SampleSize); + data->ring = CreateRingBuffer(frameSize, pDevice->BufferSize); if(!data->ring) { AL_PRINT("ring buffer create failed\n"); diff --git a/Alc/dsound.c b/Alc/dsound.c index 34f42101..b840e04b 100644 --- a/Alc/dsound.c +++ b/Alc/dsound.c @@ -382,13 +382,10 @@ static void DSoundStopContext(ALCdevice *device, ALCcontext *context) } -static ALCboolean DSoundOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean DSoundOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName) { (void)pDevice; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; return ALC_FALSE; } @@ -284,7 +284,7 @@ static void oss_stop_context(ALCdevice *device, ALCcontext *context) } -static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName) { int numFragmentsLogSize; int log2FragmentSize; @@ -321,7 +321,7 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, return ALC_FALSE; } - switch(aluBytesFromFormat(format)) + switch(aluBytesFromFormat(device->Format)) { case 1: ossFormat = AFMT_U8; @@ -337,8 +337,8 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, periods = 4; numChannels = aluChannelsFromFormat(device->Format); frameSize = numChannels * aluBytesFromFormat(device->Format); - ossSpeed = frequency; - log2FragmentSize = log2i(SampleSize * frameSize / periods); + ossSpeed = device->Frequency; + log2FragmentSize = log2i(device->BufferSize * frameSize / periods); /* according to the OSS spec, 16 bytes are the minimum */ if (log2FragmentSize < 4) @@ -376,7 +376,7 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, return ALC_FALSE; } - data->ring = CreateRingBuffer(frameSize, SampleSize); + data->ring = CreateRingBuffer(frameSize, device->BufferSize); if(!data->ring) { AL_PRINT("ring buffer create failed\n"); diff --git a/Alc/portaudio.c b/Alc/portaudio.c index 0b84d0b1..cfd35b56 100644 --- a/Alc/portaudio.c +++ b/Alc/portaudio.c @@ -174,14 +174,11 @@ static void pa_stop_context(ALCdevice *device, ALCcontext *context) } -static ALCboolean pa_open_capture(ALCdevice *device, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean pa_open_capture(ALCdevice *device, const ALCchar *deviceName) { return ALC_FALSE; (void)device; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; } diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index 89f47fba..a9fcb3df 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -201,12 +201,12 @@ static void stream_read_callback(pa_stream *stream, size_t length, void *pdata) } //}}} //}}} -static ALCboolean pulse_open(ALCdevice *device, ALCchar *device_name, ALCuint samples) //{{{ +static ALCboolean pulse_open(ALCdevice *device, ALCchar *device_name) //{{{ { pulse_data *data = ppa_xmalloc0(sizeof(pulse_data)); data->device = device; - data->samples = samples; + data->samples = device->BufferSize; data->frame_size = aluBytesFromFormat(device->Format) * aluChannelsFromFormat(device->Format); @@ -337,7 +337,7 @@ static ALCboolean pulse_open_playback(ALCdevice *device, const ALCchar *device_n return ALC_FALSE; } - return pulse_open(device, pulse_device, 0); + return pulse_open(device, pulse_device); } //}}} static void pulse_close_playback(ALCdevice *device) //{{{ @@ -450,7 +450,7 @@ static void pulse_stop_context(ALCdevice *device, ALCcontext *context) //{{{ } //}}} -static ALCboolean pulse_open_capture(ALCdevice *device, const ALCchar *device_name, ALCuint frequency, ALCenum format, ALCsizei samples) //{{{ +static ALCboolean pulse_open_capture(ALCdevice *device, const ALCchar *device_name) //{{{ { pulse_data *data; @@ -463,10 +463,7 @@ static ALCboolean pulse_open_capture(ALCdevice *device, const ALCchar *device_na return ALC_FALSE; } - assert(device->Format == format); - assert(device->Frequency == frequency); - - if(pulse_open(device, pulse_capture_device, samples) == ALC_FALSE) + if(pulse_open(device, pulse_capture_device) == ALC_FALSE) return ALC_FALSE; data = device->ExtraData; @@ -313,13 +313,10 @@ static void wave_stop_context(ALCdevice *device, ALCcontext *Context) } -static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean wave_open_capture(ALCdevice *pDevice, const ALCchar *deviceName) { (void)pDevice; (void)deviceName; - (void)frequency; - (void)format; - (void)SampleSize; return ALC_FALSE; } diff --git a/Alc/winmm.c b/Alc/winmm.c index ea97b695..5365cbc7 100644 --- a/Alc/winmm.c +++ b/Alc/winmm.c @@ -175,7 +175,7 @@ static void WinMMClosePlayback(ALCdevice *device) } -static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName, ALCuint frequency, ALCenum format, ALCsizei SampleSize) +static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName) { WAVEFORMATEX wfexCaptureFormat; WinMMData *pData = NULL; @@ -183,8 +183,6 @@ static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName ALint lBufferSize; ALint i; - (void)format; - // Find the Device ID matching the deviceName if valid if (deviceName) { @@ -214,7 +212,7 @@ static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName wfexCaptureFormat.wBitsPerSample = aluBytesFromFormat(pDevice->Format) * 8; wfexCaptureFormat.nBlockAlign = wfexCaptureFormat.wBitsPerSample * wfexCaptureFormat.nChannels / 8; - wfexCaptureFormat.nSamplesPerSec = frequency; + wfexCaptureFormat.nSamplesPerSec = pDevice->Frequency; wfexCaptureFormat.nAvgBytesPerSec = wfexCaptureFormat.nSamplesPerSec * wfexCaptureFormat.nBlockAlign; wfexCaptureFormat.cbSize = 0; @@ -231,7 +229,7 @@ static ALCboolean WinMMOpenCapture(ALCdevice *pDevice, const ALCchar *deviceName goto failure; // Allocate circular memory buffer for the captured audio - pData->ulCapturedDataSize = SampleSize * wfexCaptureFormat.nBlockAlign; + pData->ulCapturedDataSize = pDevice->BufferSize * wfexCaptureFormat.nBlockAlign; // Make sure circular buffer is at least 100ms in size (and an exact multiple of // the block alignment |