diff options
author | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-16 18:33:10 -0700 |
commit | 04dad28228a694e681d722826615245466a3aa16 (patch) | |
tree | 54860fb951339bb4af88df4c620383323427a5fd /Alc/pulseaudio.c | |
parent | a96f8177387818d3ef69778e3f78a9ed251326c1 (diff) |
Use mini/maxi/clampi and minu/maxu/clampu to replace min/max calls
Diffstat (limited to 'Alc/pulseaudio.c')
-rw-r--r-- | Alc/pulseaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/pulseaudio.c b/Alc/pulseaudio.c index c3561bed..5900d728 100644 --- a/Alc/pulseaudio.c +++ b/Alc/pulseaudio.c @@ -1121,7 +1121,7 @@ static ALCboolean pulse_open_capture(ALCdevice *device, const ALCchar *device_na data->attr.prebuf = -1; data->attr.maxlength = data->samples * data->frame_size; data->attr.tlength = -1; - data->attr.fragsize = min(data->samples, 50 * device->Frequency / 1000) * + data->attr.fragsize = minu(data->samples, 50*device->Frequency/1000) * data->frame_size; data->spec.rate = device->Frequency; |