mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-21 06:46:21 -06:00
Fussing with codebase: beware errors
This commit is contained in:
parent
54fd8c7a18
commit
2336d31220
1062 changed files with 3132 additions and 9576 deletions
|
|
@ -49,8 +49,8 @@ void PurestFade::processReplacing(float **inputs, float **outputs, VstInt32 samp
|
|||
{
|
||||
double inputSampleL = *in1;
|
||||
double inputSampleR = *in2;
|
||||
if (fabs(inputSampleL)<1.18e-37) inputSampleL = fpd * 1.18e-37;
|
||||
if (fabs(inputSampleR)<1.18e-37) inputSampleR = fpd * 1.18e-37;
|
||||
if (fabs(inputSampleL)<1.18e-23) inputSampleL = fpdL * 1.18e-17;
|
||||
if (fabs(inputSampleR)<1.18e-23) inputSampleR = fpdR * 1.18e-17;
|
||||
|
||||
targetgain = pow(10.0,settingchase/20.0);
|
||||
//now we have the target in our temp variable
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue