From ec837532fe9bff19aaf20bf1092cb551bb786a78 Mon Sep 17 00:00:00 2001 From: Javier Nonis Date: Fri, 27 Dec 2024 16:29:36 -0300 Subject: [PATCH] Reduce Mverb FX memory usage to avoid issues --- src/effect_audio/mverb/MVerb.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/effect_audio/mverb/MVerb.h b/src/effect_audio/mverb/MVerb.h index 736ef56..f46a69c 100644 --- a/src/effect_audio/mverb/MVerb.h +++ b/src/effect_audio/mverb/MVerb.h @@ -33,12 +33,12 @@ class MVerb { private: Allpass allpass[4]; - StaticAllpassFourTap allpassFourTap[4]; + StaticAllpassFourTap allpassFourTap[4]; StateVariable bandwidthFilter[2]; StateVariable damping[2]; StaticDelayLine predelay; - StaticDelayLineFourTap staticDelayLine[4]; - StaticDelayLineEightTap earlyReflectionsDelayLine[2]; + StaticDelayLineFourTap staticDelayLine[4]; + StaticDelayLineEightTap earlyReflectionsDelayLine[2]; T SampleRate, DampingFreq, Density1, Density2, BandwidthFreq, PreDelayTime, Decay, Gain, Mix, EarlyMix, Size; T MixSmooth, EarlyLateSmooth, BandwidthSmooth, DampingSmooth, PredelaySmooth, SizeSmooth, DensitySmooth, DecaySmooth; T PreviousLeftTank, PreviousRightTank;