mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Bug: webrtc:10913 Change-Id: I1667146d38dc99d099b140f47cd774a7f203b4f0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/157047 Reviewed-by: Sam Zackrisson <saza@webrtc.org> Commit-Queue: Per Åhgren <peah@webrtc.org> Cr-Commit-Position: refs/heads/master@{#29521}
56 lines
2 KiB
C++
56 lines
2 KiB
C++
/*
|
|
* Copyright (c) 2018 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/subtractor_output_analyzer.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include "modules/audio_processing/aec3/aec3_common.h"
|
|
|
|
namespace webrtc {
|
|
|
|
SubtractorOutputAnalyzer::SubtractorOutputAnalyzer(size_t num_capture_channels)
|
|
: filters_converged_(num_capture_channels, false) {}
|
|
|
|
void SubtractorOutputAnalyzer::Update(
|
|
rtc::ArrayView<const SubtractorOutput> subtractor_output,
|
|
bool* any_filter_converged,
|
|
bool* all_filters_diverged) {
|
|
RTC_DCHECK(any_filter_converged);
|
|
RTC_DCHECK(all_filters_diverged);
|
|
RTC_DCHECK_EQ(subtractor_output.size(), filters_converged_.size());
|
|
|
|
*any_filter_converged = false;
|
|
*all_filters_diverged = true;
|
|
|
|
for (size_t ch = 0; ch < subtractor_output.size(); ++ch) {
|
|
const float y2 = subtractor_output[ch].y2;
|
|
const float e2_main = subtractor_output[ch].e2_main;
|
|
const float e2_shadow = subtractor_output[ch].e2_shadow;
|
|
|
|
constexpr float kConvergenceThreshold = 50 * 50 * kBlockSize;
|
|
bool main_filter_converged =
|
|
e2_main < 0.5f * y2 && y2 > kConvergenceThreshold;
|
|
bool shadow_filter_converged =
|
|
e2_shadow < 0.05f * y2 && y2 > kConvergenceThreshold;
|
|
float min_e2 = std::min(e2_main, e2_shadow);
|
|
bool filter_diverged = min_e2 > 1.5f * y2 && y2 > 30.f * 30.f * kBlockSize;
|
|
filters_converged_[ch] = main_filter_converged || shadow_filter_converged;
|
|
|
|
*any_filter_converged = *any_filter_converged || filters_converged_[ch];
|
|
*all_filters_diverged = *all_filters_diverged && filter_diverged;
|
|
}
|
|
}
|
|
|
|
void SubtractorOutputAnalyzer::HandleEchoPathChange() {
|
|
std::fill(filters_converged_.begin(), filters_converged_.end(), false);
|
|
}
|
|
|
|
} // namespace webrtc
|