Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dreverb_decay_estimator.cc307 numerators_(numerators_smooth_.size(), 0.f), in EarlyReverbLengthEstimator()
317 std::fill(numerators_.begin(), numerators_.end(), 0.f); in Reset()
331 std::min(block_counter_, static_cast<int>(numerators_.size() - 1)); in Accumulate()
339 numerators_[section] += value_to_add; in Accumulate()
348 RTC_DCHECK_GT(numerators_.size(), section); in Accumulate()
351 smoothing * (numerators_[section] - numerators_smooth_[section]); in Accumulate()
Dreverb_decay_estimator.h88 std::vector<float> numerators_; variable