From 8ac2d34706d1dea7c33f2b33c156cc23dde7b197 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 21 Feb 2019 04:23:01 -0800 Subject: Allow processing some effects in higher order ambisonics Reverb notably is still only first-order (any higher order channels are dropped, and it writes to FOAOut). But others, like the equalizer, work on all available channels. --- Alc/effects/compressor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Alc/effects/compressor.cpp') diff --git a/Alc/effects/compressor.cpp b/Alc/effects/compressor.cpp index 99507661..12a8c886 100644 --- a/Alc/effects/compressor.cpp +++ b/Alc/effects/compressor.cpp @@ -76,12 +76,12 @@ void ALcompressorState::update(const ALCcontext* UNUSED(context), const ALeffect { mEnabled = props->Compressor.OnOff; - mOutBuffer = target.FOAOut->Buffer; - mOutChannels = target.FOAOut->NumChannels; + mOutBuffer = target.Main->Buffer; + mOutChannels = target.Main->NumChannels; for(size_t i{0u};i < slot->WetBuffer.size();++i) { auto coeffs = GetAmbiIdentityRow(i); - ComputePanGains(target.FOAOut, coeffs.data(), slot->Params.Gain, mGain[i]); + ComputePanGains(target.Main, coeffs.data(), slot->Params.Gain, mGain[i]); } } -- cgit v1.2.3