aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/autowah.cpp
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2023-01-05 01:47:55 -0800
committerChris Robinson <chris.kcat@gmail.com>2023-01-05 01:47:55 -0800
commit23c8a35505fe6ab7a5c87754911a133b23ac75cf (patch)
treed36b9dabb413680d8074f3e8aad0084691d20813 /alc/effects/autowah.cpp
parent58a18ab3c0126337d17939b5060fce28a39b8cf1 (diff)
Add and use mixers that process one input and output channel
Diffstat (limited to 'alc/effects/autowah.cpp')
-rw-r--r--alc/effects/autowah.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/autowah.cpp b/alc/effects/autowah.cpp
index 8dfee45d..581476a2 100644
--- a/alc/effects/autowah.cpp
+++ b/alc/effects/autowah.cpp
@@ -214,8 +214,8 @@ void AutowahState::process(const size_t samplesToDo,
chandata->mFilter.z2 = z2;
/* Now, mix the processed sound data to the output. */
- MixSamples({mBufferOut, samplesToDo}, {&samplesOut[outidx], 1}, &chandata->mCurrentGain,
- &chandata->mTargetGain, samplesToDo, 0);
+ MixSamples({mBufferOut, samplesToDo}, samplesOut[outidx].data(), chandata->mCurrentGain,
+ chandata->mTargetGain, samplesToDo);
++chandata;
}
}