1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

DSP: Improved the smoothing of IR changes in the Convolution class

This commit is contained in:
Ivan COHEN 2019-02-06 14:15:53 +01:00 committed by Tom Poole
parent dfbe18b577
commit 36d71a0c75

View file

@ -1046,7 +1046,7 @@ private:
OwnedArray<ConvolutionEngine> engines; // the 4 convolution engines being used
AudioBuffer<float> interpolationBuffer; // a buffer to do the interpolation between the convolution engines 0-1 and 2-3
LinearSmoothedValue<float> changeVolumes[4]; // the volumes for each convolution engine during interpolation
LogSmoothedValue<float> changeVolumes[4]; // the volumes for each convolution engine during interpolation
bool mustInterpolate = false; // tells if the convolution engines outputs must be currently interpolated