Searched refs:lpf_coef (Results 1 – 2 of 2) sorted by relevance
126 f32 lpf_coef = param.m_Damping; in SetParam() local127 if ( lpf_coef > 0.95f ) in SetParam()129 lpf_coef = 0.95f; in SetParam()131 f32 lpf_coef_1 = 1.f - lpf_coef; in SetParam()132 f32 lpf_coef_2 = lpf_coef; in SetParam()
336 f32 lpf_coef = m_Param.m_Damping; in InitializeParam() local337 if ( lpf_coef > 0.95f ) lpf_coef = 0.95f; in InitializeParam()338 m_LpfCoef1 = static_cast<s32>( static_cast<s32>(0x80L) * ( 1.f - lpf_coef ) ); in InitializeParam()339 m_LpfCoef2 = static_cast<s32>( static_cast<s32>(0x80L) * lpf_coef ); in InitializeParam()