aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacAU/CStrip/CStrip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MacAU/CStrip/CStrip.cpp')
-rwxr-xr-xplugins/MacAU/CStrip/CStrip.cpp27
1 files changed, 8 insertions, 19 deletions
diff --git a/plugins/MacAU/CStrip/CStrip.cpp b/plugins/MacAU/CStrip/CStrip.cpp
index 78b3c31..494d6b5 100755
--- a/plugins/MacAU/CStrip/CStrip.cpp
+++ b/plugins/MacAU/CStrip/CStrip.cpp
@@ -257,9 +257,7 @@ ComponentResult CStrip::Initialize()
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
void CStrip::CStripKernel::Reset()
{
- fpNShapeA = 0.0;
- fpNShapeB = 0.0;
- fpFlip = true;
+ fpNShape = 0.0;
lastSample = 0.0;
last2Sample = 0.0;
@@ -347,9 +345,8 @@ void CStrip::CStripKernel::Process( const Float32 *inSourceP,
overallscale = GetSampleRate();
compscale = compscale * overallscale;
//compscale is the one that's 1 or something like 2.2 for 96K rates
- Float32 fpTemp;
- Float64 fpOld = 0.618033988749894848204586; //golden ratio!
- Float64 fpNew = 1.0 - fpOld;
+ long double fpOld = 0.618033988749894848204586; //golden ratio!
+ long double fpNew = 1.0 - fpOld;
Float64 inputSample;
Float64 highSample = 0.0;
@@ -767,19 +764,11 @@ void CStrip::CStripKernel::Process( const Float32 *inSourceP,
//built in output trim and dry/wet if desired
if (outputgain != 1.0) inputSample *= outputgain;
- //noise shaping to 32-bit floating point
- if (fpFlip) {
- fpTemp = inputSample;
- fpNShapeA = (fpNShapeA*fpOld)+((inputSample-fpTemp)*fpNew);
- inputSample += fpNShapeA;
- }
- else {
- fpTemp = inputSample;
- fpNShapeB = (fpNShapeB*fpOld)+((inputSample-fpTemp)*fpNew);
- inputSample += fpNShapeB;
- }
- fpFlip = not fpFlip;
- //end noise shaping on 32 bit output
+ //32 bit dither, made small and tidy.
+ int expon; frexpf((Float32)inputSample, &expon);
+ long double dither = (rand()/(RAND_MAX*7.737125245533627e+25))*pow(2,expon+62);
+ inputSample += (dither-fpNShape); fpNShape = dither;
+ //end 32 bit dither
*destP = inputSample;