Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dsignal_dependent_erle_estimator.cc141 erle_ref_(num_capture_channels), in SignalDependentErleEstimator()
160 erle_ref_[ch].fill(min_erle_); in Reset()
214 data_dumper->DumpRaw("aec3_ref_erle", erle_ref_[0]); in Dump()
304 float alpha = new_erle[subband] > erle_ref_[ch][subband] in UpdateCorrectionFactors()
308 erle_ref_[ch][subband] += in UpdateCorrectionFactors()
309 alpha * (new_erle[subband] - erle_ref_[ch][subband]); in UpdateCorrectionFactors()
310 erle_ref_[ch][subband] = rtc::SafeClamp(erle_ref_[ch][subband], in UpdateCorrectionFactors()
319 RTC_DCHECK_GT(erle_ref_[ch][subband], 0.f); in UpdateCorrectionFactors()
324 erle_estimators_[ch][idx][subband] / erle_ref_[ch][subband]; in UpdateCorrectionFactors()
Dsignal_dependent_erle_estimator.h90 std::vector<std::array<float, kSubbands>> erle_ref_; variable