Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dsignal_dependent_erle_estimator.cc138 erle_estimators_( in SignalDependentErleEstimator()
157 for (auto& erle_estimator : erle_estimators_[ch]) { in Reset()
211 for (auto& erle : erle_estimators_[0]) { in Dump()
292 RTC_DCHECK_LT(idx, erle_estimators_[ch].size()); in UpdateCorrectionFactors()
293 float alpha = new_erle[subband] > erle_estimators_[ch][idx][subband] in UpdateCorrectionFactors()
297 erle_estimators_[ch][idx][subband] += in UpdateCorrectionFactors()
298 alpha * (new_erle[subband] - erle_estimators_[ch][idx][subband]); in UpdateCorrectionFactors()
299 erle_estimators_[ch][idx][subband] = rtc::SafeClamp( in UpdateCorrectionFactors()
300 erle_estimators_[ch][idx][subband], min_erle_, max_erle_[subband]); in UpdateCorrectionFactors()
324 erle_estimators_[ch][idx][subband] / erle_ref_[ch][subband]; in UpdateCorrectionFactors()
Dsignal_dependent_erle_estimator.h89 std::vector<std::vector<std::array<float, kSubbands>>> erle_estimators_; variable