From 36d71a0c7560277cdf0ed7d4cdc7019ed912f08b Mon Sep 17 00:00:00 2001 From: Ivan COHEN Date: Wed, 6 Feb 2019 14:15:53 +0100 Subject: [PATCH] DSP: Improved the smoothing of IR changes in the Convolution class --- modules/juce_dsp/frequency/juce_Convolution.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_dsp/frequency/juce_Convolution.cpp b/modules/juce_dsp/frequency/juce_Convolution.cpp index 434457904e..8c013086fe 100644 --- a/modules/juce_dsp/frequency/juce_Convolution.cpp +++ b/modules/juce_dsp/frequency/juce_Convolution.cpp @@ -1046,7 +1046,7 @@ private: OwnedArray engines; // the 4 convolution engines being used AudioBuffer interpolationBuffer; // a buffer to do the interpolation between the convolution engines 0-1 and 2-3 - LinearSmoothedValue changeVolumes[4]; // the volumes for each convolution engine during interpolation + LogSmoothedValue changeVolumes[4]; // the volumes for each convolution engine during interpolation bool mustInterpolate = false; // tells if the convolution engines outputs must be currently interpolated