aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2014-02-01 19:31:05 -0800
committerChris Robinson <[email protected]>2014-02-01 19:31:05 -0800
commit7bfea9087e9ea596b5f7c4aee563c5fc7d9962c1 (patch)
tree0ac73c12ea47e1d65634ca81da270d7758c9daa6 /Alc/ALu.c
parent11a7b3e8f8d70c5cdcddce2dfd51ae8bb61ce12d (diff)
Remove an unnecessary special-case for the click removal
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index bf3d8174..fd8065ed 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -1139,20 +1139,7 @@ ALvoid aluMixData(ALCdevice *device, ALvoid *buffer, ALsizei size)
/* Click-removal. Could do better; this only really handles immediate
* changes between updates where a predictive sample could be
* generated. Delays caused by effects and HRTF aren't caught. */
- if(device->FmtChans == DevFmtMono)
- {
- ALfloat offset = device->ClickRemoval[FrontCenter];
- if(offset < (1.0f/32768.0f))
- offset = 0.0f;
- else for(i = 0;i < SamplesToDo;i++)
- {
- device->DryBuffer[FrontCenter][i] += offset;
- offset -= offset * (1.0f/256.0f);
- }
- device->ClickRemoval[FrontCenter] = offset + device->PendingClicks[FrontCenter];
- device->PendingClicks[FrontCenter] = 0.0f;
- }
- else if(device->FmtChans == DevFmtStereo)
+ if(device->FmtChans == DevFmtStereo)
{
/* Assumes the first two channels are FrontLeft and FrontRight */
for(c = 0;c < 2;c++)