Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dreverb_decay_estimator.cc137 if (block_to_analyze_ < filter_length_blocks_) { in Update()
140 ++block_to_analyze_; in Update()
151 block_to_analyze_ = 0; in ResetDecayEstimation()
165 block_to_analyze_ = in EstimateDecay()
171 const float first_reverb_gain = BlockEnergyAverage(h, block_to_analyze_); in EstimateDecay()
204 block_to_analyze_ + estimation_region_candidate_size_ - 1; in EstimateDecay()
225 filter.begin() + block_to_analyze_ * kFftLengthBy2, kFftLengthBy2); in AnalyzeFilter()
234 AnalyzeBlockGain(h2, tail_gain_, &previous_gains_[block_to_analyze_], in AnalyzeFilter()
248 if (block_to_analyze_ <= late_reverb_end_) { in AnalyzeFilter()
249 if (block_to_analyze_ >= late_reverb_start_) { in AnalyzeFilter()
Dreverb_decay_estimator.h101 int block_to_analyze_ = 0; variable