diff options
author | Chris Robinson <[email protected]> | 2019-08-20 04:16:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-08-20 04:16:44 -0700 |
commit | 102ef6cb3356ef81e2a392d3aa8bd6324eb3ff30 (patch) | |
tree | 2f661c63be78c7f611665b2fb5a29ff58813b543 /alc/effects/dedicated.cpp | |
parent | 4883091f5de278b7469790efa466df5d93d465b0 (diff) |
Pass a span for the Mix function's input
Diffstat (limited to 'alc/effects/dedicated.cpp')
-rw-r--r-- | alc/effects/dedicated.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/dedicated.cpp b/alc/effects/dedicated.cpp index 2e49658f..dc5e8527 100644 --- a/alc/effects/dedicated.cpp +++ b/alc/effects/dedicated.cpp @@ -88,8 +88,8 @@ void DedicatedState::update(const ALCcontext*, const ALeffectslot *slot, const E void DedicatedState::process(const ALsizei samplesToDo, const FloatBufferLine *RESTRICT samplesIn, const ALsizei /*numInput*/, const al::span<FloatBufferLine> samplesOut) { - MixSamples(samplesIn[0].data(), samplesOut, mCurrentGains, mTargetGains, samplesToDo, 0, - samplesToDo); + MixSamples({samplesIn[0].data(), samplesIn[0].data()+samplesToDo}, samplesOut, mCurrentGains, + mTargetGains, samplesToDo, 0); } |