diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2019-06-05 19:58:58 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2019-06-05 19:58:58 -0700 |
commit | f9da06fc6a265e3ab2f548a9533b222e7a183637 (patch) | |
tree | d430e2bdf5d4a20f8f4a29efda8901d861417d01 /Alc/effects/pshifter.cpp | |
parent | 1ce310c6d1719c6f71664385e136b5510602ac21 (diff) |
Use a span for the effect state's output target
Diffstat (limited to 'Alc/effects/pshifter.cpp')
-rw-r--r-- | Alc/effects/pshifter.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/effects/pshifter.cpp b/Alc/effects/pshifter.cpp index 184c9a40..f1865830 100644 --- a/Alc/effects/pshifter.cpp +++ b/Alc/effects/pshifter.cpp @@ -192,8 +192,7 @@ void PshifterState::update(const ALCcontext* UNUSED(context), const ALeffectslot ALfloat coeffs[MAX_AMBI_CHANNELS]; CalcDirectionCoeffs({0.0f, 0.0f, -1.0f}, 0.0f, coeffs); - mOutBuffer = target.Main->Buffer; - mOutChannels = target.Main->NumChannels; + mOutTarget = {target.Main->Buffer, target.Main->NumChannels}; ComputePanGains(target.Main, coeffs, slot->Params.Gain, mTargetGains); } |