Searched refs:lpf_coef (Results 1 – 2 of 2) sorted by relevance
128 f32 lpf_coef = param.m_Damping; in SetParam() local129 if ( lpf_coef > 0.95f ) in SetParam()131 lpf_coef = 0.95f; in SetParam()133 f32 lpf_coef_1 = 1.f - lpf_coef; in SetParam()134 f32 lpf_coef_2 = lpf_coef; in SetParam()
357 f32 lpf_coef = m_Param.m_Damping; in InitializeParam() local358 if ( lpf_coef > 0.95f ) lpf_coef = 0.95f; in InitializeParam()359 m_LpfCoef1 = static_cast<s32>( static_cast<s32>(0x80L) * ( 1.f - lpf_coef ) ); in InitializeParam()360 m_LpfCoef2 = static_cast<s32>( static_cast<s32>(0x80L) * lpf_coef ); in InitializeParam()