webrtc_m130/modules/audio_processing/aec3/subband_nearend_detector.cc
Dor Hen 3fa21c89c0 Comment unused variables in implemented functions 13\n
Increased the number of errors the automation is fixing to 150 from
75 in this commit.

Bug: webrtc:370878648
Change-Id: If6e6a5f40db7eb54c27c1a85fb7031838e478c70
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/366205
Reviewed-by: Harald Alvestrand <hta@webrtc.org>
Reviewed-by: Danil Chapovalov <danilchap@webrtc.org>
Commit-Queue: Dor Hen <dorhen@meta.com>
Cr-Commit-Position: refs/heads/main@{#43337}
2024-10-31 07:44:25 +00:00

71 lines
2.8 KiB
C++

/*
* Copyright (c) 2019 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "modules/audio_processing/aec3/subband_nearend_detector.h"
#include <numeric>
namespace webrtc {
SubbandNearendDetector::SubbandNearendDetector(
const EchoCanceller3Config::Suppressor::SubbandNearendDetection& config,
size_t num_capture_channels)
: config_(config),
num_capture_channels_(num_capture_channels),
nearend_smoothers_(num_capture_channels_,
aec3::MovingAverage(kFftLengthBy2Plus1,
config_.nearend_average_blocks)),
one_over_subband_length1_(
1.f / (config_.subband1.high - config_.subband1.low + 1)),
one_over_subband_length2_(
1.f / (config_.subband2.high - config_.subband2.low + 1)) {}
void SubbandNearendDetector::Update(
rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>>
nearend_spectrum,
rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>>
/* residual_echo_spectrum */,
rtc::ArrayView<const std::array<float, kFftLengthBy2Plus1>>
comfort_noise_spectrum,
bool /* initial_state */) {
nearend_state_ = false;
for (size_t ch = 0; ch < num_capture_channels_; ++ch) {
const std::array<float, kFftLengthBy2Plus1>& noise =
comfort_noise_spectrum[ch];
std::array<float, kFftLengthBy2Plus1> nearend;
nearend_smoothers_[ch].Average(nearend_spectrum[ch], nearend);
// Noise power of the first region.
float noise_power =
std::accumulate(noise.begin() + config_.subband1.low,
noise.begin() + config_.subband1.high + 1, 0.f) *
one_over_subband_length1_;
// Nearend power of the first region.
float nearend_power_subband1 =
std::accumulate(nearend.begin() + config_.subband1.low,
nearend.begin() + config_.subband1.high + 1, 0.f) *
one_over_subband_length1_;
// Nearend power of the second region.
float nearend_power_subband2 =
std::accumulate(nearend.begin() + config_.subband2.low,
nearend.begin() + config_.subband2.high + 1, 0.f) *
one_over_subband_length2_;
// One channel is sufficient to trigger nearend state.
nearend_state_ =
nearend_state_ ||
(nearend_power_subband1 <
config_.nearend_threshold * nearend_power_subband2 &&
(nearend_power_subband1 > config_.snr_threshold * noise_power));
}
}
} // namespace webrtc