1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 08:30:06 +02:00

remove commented out code

This commit is contained in:
richardash1981 2014-10-25 21:16:00 +00:00
parent b133ba5ab7
commit c2c525dcc3
2 changed files with 0 additions and 14 deletions

View File

@ -156,13 +156,6 @@ bool EffectPhaser::ProcessSimpleMono(float *buffer, sampleCount len)
fbout = m; fbout = m;
out = (m * drywet + in * (255 - drywet)) / 255; out = (m * drywet + in * (255 - drywet)) / 255;
// Prevents clipping
// Commented out, per http://bugzilla.audacityteam.org/show_bug.cgi?id=690.
//if (out < -1.0)
// out = float(-1.0);
//else if (out > 1.0)
// out = float(1.0);
buffer[i] = out; buffer[i] = out;
} }

View File

@ -155,13 +155,6 @@ bool EffectWahwah::ProcessSimpleMono(float *buffer, sampleCount len)
yn2 = yn1; yn2 = yn1;
yn1 = out; yn1 = out;
// Prevents clipping
// Commented out, per http://bugzilla.audacityteam.org/show_bug.cgi?id=689.
//if (out < -1.0)
// out = float(-1.0);
//else if (out > 1.0)
// out = float(1.0);
buffer[i] = (float) out; buffer[i] = (float) out;
} }