From b0720333cc4b879751b34701910077d6d0627190 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Tue, 12 Feb 2008 19:50:49 -0800 Subject: [PATCH] UpdateSize is not used for capture devices --- Alc/oss.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Alc/oss.c b/Alc/oss.c index 477a354f..91b7a517 100644 --- a/Alc/oss.c +++ b/Alc/oss.c @@ -321,7 +321,7 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, periods = 4; numChannels = aluChannelsFromFormat(device->Format); ossSpeed = frequency; - log2FragmentSize = log2i(device->UpdateSize * device->FrameSize / periods); + log2FragmentSize = log2i(SampleSize * device->FrameSize / periods); /* according to the OSS spec, 16 bytes are the minimum */ if (log2FragmentSize < 4) @@ -368,9 +368,7 @@ static ALCboolean oss_open_capture(ALCdevice *device, const ALCchar *deviceName, return ALC_FALSE; } - device->UpdateSize = info.fragsize / device->FrameSize; - - data->data_size = device->UpdateSize * device->FrameSize * info.fragments; + data->data_size = SampleSize * device->FrameSize * info.fragments; data->mix_data = calloc(1, data->data_size); device->ExtraData = data;