Home
last modified time | relevance | path

Searched refs:lpf_coef (Results 1 – 2 of 2) sorted by relevance

/NW4C-2.0.3/sources/libraries/snd/
Dsnd_FxDelay.cpp128 f32 lpf_coef = param.m_Damping; in SetParam() local
129 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()
Dsnd_FxReverb.cpp357 f32 lpf_coef = m_Param.m_Damping; in InitializeParam() local
358 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()