Home
last modified time | relevance | path

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

/external/webrtc/modules/audio_processing/aec3/
Dreverb_decay_estimator.cc29 constexpr int kBlocksPerSection = 6; variable
32 -0.5f * kBlocksPerSection * kFftLengthBy2 + 0.5f;
306 : numerators_smooth_(max_blocks - kBlocksPerSection, 0.f), in EarlyReverbLengthEstimator()
329 int first_section_index = std::max(block_counter_ - kBlocksPerSection + 1, 0); in Accumulate()
346 if (block_counter_ >= (kBlocksPerSection - 1)) { in Accumulate()
347 size_t section = block_counter_ - (kBlocksPerSection - 1); in Accumulate()
365 constexpr float N = kBlocksPerSection * kFftLengthBy2; in Estimate()