Well, forgot some basic maths ....

pull/122/head
Geoffrey Merck 6 years ago committed by SASANO Takayoshi
parent 1ee722c9a7
commit f94106f1f8

@ -44,8 +44,8 @@ CAGC::CAGC(float initialLeveldB)
m_scale = (float)0xFFFF;
m_bandwidth = 1e-2f; //TODO : Move to parameter ?
m_gMax = pow(10.0f, initialLeveldB + 10.0f/20.0f);//+- 10dB Margin, TODO Move margin to constant
m_gMin = pow(10.0f, initialLeveldB - 10.0f/20.0f);
m_gMax = pow(10.0f, (initialLeveldB + 10.0f)/20.0f);//+- 10dB Margin, TODO Move margin to constant
m_gMin = pow(10.0f, (initialLeveldB - 10.0f)/20.0f);
m_alpha = m_bandwidth;
m_y2_prime = 1.0f;
}

Loading…
Cancel
Save

Powered by TurnKey Linux.