From 4fab5b2966565930a5601d71f41170a4ec84d41a Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Tue, 6 Feb 2024 10:30:34 +0000 Subject: [PATCH] Documentation: Fix a minor typo in the interpolator documentation --- modules/juce_audio_basics/utilities/juce_Interpolators.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/juce_audio_basics/utilities/juce_Interpolators.h b/modules/juce_audio_basics/utilities/juce_Interpolators.h index ccee0fcdf602..5a88bcd176c3 100644 --- a/modules/juce_audio_basics/utilities/juce_Interpolators.h +++ b/modules/juce_audio_basics/utilities/juce_Interpolators.h @@ -158,7 +158,8 @@ class Interpolators Note that the resampler is stateful, so when there's a break in the continuity of the input stream you're feeding it, you should call reset() before feeding it any new data. And like with any other stateful filter, if you're resampling - multiple channels, make sure each one uses its own LinearInterpolator object. + multiple channels, make sure each one uses its own WindowedSincInterpolator + object. @see GenericInterpolator