Home
last modified time | relevance | path

Searched refs:sdSum (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
592 sdSum = vget_lane_f32(vec_sdSum_total, 0); in SmoothedPSD()
626 sdSum += aec->sd[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
576 _mm_add_ps_4x1(vec_sdSum, &sdSum); in SmoothedPSD()
608 sdSum += aec->sd[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
372 sdSum += aec->sd[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()