aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/MacAU/UnBox/UnBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MacAU/UnBox/UnBox.cpp')
-rwxr-xr-xplugins/MacAU/UnBox/UnBox.cpp20
1 files changed, 6 insertions, 14 deletions
diff --git a/plugins/MacAU/UnBox/UnBox.cpp b/plugins/MacAU/UnBox/UnBox.cpp
index b5d9943..4c1685c 100755
--- a/plugins/MacAU/UnBox/UnBox.cpp
+++ b/plugins/MacAU/UnBox/UnBox.cpp
@@ -179,7 +179,6 @@ void UnBox::UnBoxKernel::Reset()
for(int count = 0; count < 11; count++) {c[count] = 0.0; f[count] = 0.0;}
iirSampleA = 0.0;
iirSampleB = 0.0;
-
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -328,21 +327,14 @@ void UnBox::UnBoxKernel::Process( const Float32 *inSourceP,
if (output != 1.0) inputSample *= output;
- //noise shaping to 32-bit floating point
- Float32 fpTemp = inputSample;
- fpNShape += (inputSample-fpTemp);
- inputSample += fpNShape;
- //for deeper space and warmth, we try a non-oscillating noise shaping
- //that is kind of ruthless: it will forever retain the rounding errors
- //except we'll dial it back a hair at the end of every buffer processed
- //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;
sourceP += inNumChannels; destP += inNumChannels;
}
- fpNShape *= 0.999999;
- //we will just delicately dial back the FP noise shaping, not even every sample
- //this is a good place to put subtle 'no runaway' calculations, though bear in mind
- //that it will be called more often when you use shorter sample buffers in the DAW.
- //So, very low latency operation will call these calculations more often.
}