Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dsignal_dependent_erle_estimator.cc146 n_active_sections_(num_capture_channels) { in SignalDependentErleEstimator()
165 n_active_sections_[ch].fill(0); in Reset()
199 RTC_DCHECK_GT(correction_factors_[ch].size(), n_active_sections_[ch][k]); in Update()
201 correction_factors_[ch][n_active_sections_[ch][k]] in Update()
270 n_active_sections_[ch].size()); in UpdateCorrectionFactors()
272 n_active_sections_[ch].begin() + kBandBoundaries[subband], in UpdateCorrectionFactors()
273 n_active_sections_[ch].begin() + kBandBoundaries[subband + 1]); in UpdateCorrectionFactors()
395 for (size_t ch = 0; ch < n_active_sections_.size(); ++ch) { in ComputeActiveFilterSections()
396 std::fill(n_active_sections_[ch].begin(), n_active_sections_[ch].end(), 0); in ComputeActiveFilterSections()
401 n_active_sections_[ch][k] = --section; in ComputeActiveFilterSections()
Dsignal_dependent_erle_estimator.h93 std::vector<std::array<size_t, kFftLengthBy2Plus1>> n_active_sections_; variable