From 43b0afdab4b4024001f8f7eb04aebf29bd72793e Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Thu, 7 Jul 2022 02:01:20 -0700 Subject: [PATCH] Properly update the Super Stereo width Previously it would just keep using the set target, instead of tracking and interpolating changes. --- core/uhjfilter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/core/uhjfilter.cpp b/core/uhjfilter.cpp index 6cdc2944..52e7f964 100644 --- a/core/uhjfilter.cpp +++ b/core/uhjfilter.cpp @@ -195,6 +195,7 @@ void UhjStereoDecoder::decode(const al::span samples, const size_t sampl { for(size_t i{0};i < samplesToDo+sFilterDelay;++i) mD[i] = (left[i] - right[i]) * wcurrent; + mCurrentWidth = wcurrent; } else {