Move a comment

This commit is contained in:
Chris Robinson
2012-04-25 00:03:01 -07:00
parent cafbd9461e
commit 3833c021c0
+2 -2
View File
@@ -342,10 +342,10 @@ ALfloat lpCoeffCalc(ALfloat g, ALfloat cw)
{
ALfloat a = 0.0f;
/* Be careful with gains < 0.001, as that causes the coefficient head
* towards 1, which will flatten the signal */
if(g < 0.9999f) /* 1-epsilon */
{
/* Be careful with gains < 0.001, as that causes the coefficient head
* towards 1, which will flatten the signal */
g = maxf(g, 0.001f);
a = (1 - g*cw - aluSqrt(2*g*(1-cw) - g*g*(1 - cw*cw))) /
(1 - g);