Home
last modified time | relevance | path

Searched refs:seSum (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aec/
Daec_core_neon.c520 float sdSum = 0, seSum = 0; in SmoothedPSD() local
593 seSum = vget_lane_f32(vec_seSum_total, 0); in SmoothedPSD()
627 seSum += aec->se[i]; in SmoothedPSD()
631 aec->divergeState = (aec->divergeState ? 1.05f : 1.0f) * seSum > sdSum; in SmoothedPSD()
635 *extreme_filter_divergence = (seSum > (19.95f * sdSum)); in SmoothedPSD()
Daec_core_sse2.c499 float sdSum = 0, seSum = 0; in SmoothedPSD() local
577 _mm_add_ps_4x1(vec_seSum, &seSum); in SmoothedPSD()
609 seSum += aec->se[i]; in SmoothedPSD()
613 aec->divergeState = (aec->divergeState ? 1.05f : 1.0f) * seSum > sdSum; in SmoothedPSD()
617 *extreme_filter_divergence = (seSum > (19.95f * sdSum)); in SmoothedPSD()
Daec_core.c341 float sdSum = 0, seSum = 0; in SmoothedPSD() local
373 seSum += aec->se[i]; in SmoothedPSD()
377 aec->divergeState = (aec->divergeState ? 1.05f : 1.0f) * seSum > sdSum; in SmoothedPSD()
381 *extreme_filter_divergence = (seSum > (19.95f * sdSum)); in SmoothedPSD()