Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/snd/
Dsnd_FxDelay.cpp126 f32 lpf_coef = param.m_Damping; in SetParam() local
127 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()
Dsnd_FxReverb.cpp336 f32 lpf_coef = m_Param.m_Damping; in InitializeParam() local
337 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()