Home | History | Annotate | Download | only in fixed

Lines Matching refs:normalizer

104     opus_int32 cross_corr, normalizer, energy, shift, energy_basis, energy_target;
198 normalizer = silk_inner_prod_aligned( target_ptr, target_ptr, SF_LENGTH_8KHZ );
199 normalizer = silk_ADD32( normalizer, silk_inner_prod_aligned( basis_ptr, basis_ptr, SF_LENGTH_8KHZ ) );
200 normalizer = silk_ADD32( normalizer, silk_SMULBB( SF_LENGTH_8KHZ, 4000 ) );
203 (opus_int16)silk_DIV32_varQ( cross_corr, normalizer, 13 + 1 ); /* Q13 */
205 /* From now on normalizer is computed recursively */
216 normalizer = silk_ADD32( normalizer,
221 (opus_int16)silk_DIV32_varQ( cross_corr, normalizer, 13 + 1 ); /* Q13 */