mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-16 15:20:42 +01:00

This CL is the result of running include-what-you-use tool on part of the code base (audio target and dependencies) plus manual fixes. bug: webrtc:8311 Change-Id: I277d281ce943c3ecc1bd45fd8d83055931743604 Reviewed-on: https://webrtc-review.googlesource.com/c/106280 Commit-Queue: Yves Gerey <yvesg@google.com> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25311}
67 lines
2.4 KiB
C++
67 lines
2.4 KiB
C++
/*
|
|
* Copyright (c) 2017 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/erle_estimator.h"
|
|
|
|
#include "api/array_view.h"
|
|
#include "modules/audio_processing/aec3/aec3_common.h"
|
|
#include "modules/audio_processing/logging/apm_data_dumper.h"
|
|
#include "rtc_base/checks.h"
|
|
|
|
namespace webrtc {
|
|
|
|
ErleEstimator::ErleEstimator(size_t startup_phase_length_blocks_,
|
|
float min_erle,
|
|
float max_erle_lf,
|
|
float max_erle_hf)
|
|
: startup_phase_length_blocks__(startup_phase_length_blocks_),
|
|
fullband_erle_estimator_(min_erle, max_erle_lf),
|
|
subband_erle_estimator_(min_erle, max_erle_lf, max_erle_hf) {
|
|
Reset(true);
|
|
}
|
|
|
|
ErleEstimator::~ErleEstimator() = default;
|
|
|
|
void ErleEstimator::Reset(bool delay_change) {
|
|
fullband_erle_estimator_.Reset();
|
|
subband_erle_estimator_.Reset();
|
|
if (delay_change) {
|
|
blocks_since_reset_ = 0;
|
|
}
|
|
}
|
|
|
|
void ErleEstimator::Update(rtc::ArrayView<const float> reverb_render_spectrum,
|
|
rtc::ArrayView<const float> capture_spectrum,
|
|
rtc::ArrayView<const float> subtractor_spectrum,
|
|
bool converged_filter,
|
|
bool onset_detection) {
|
|
RTC_DCHECK_EQ(kFftLengthBy2Plus1, reverb_render_spectrum.size());
|
|
RTC_DCHECK_EQ(kFftLengthBy2Plus1, capture_spectrum.size());
|
|
RTC_DCHECK_EQ(kFftLengthBy2Plus1, subtractor_spectrum.size());
|
|
const auto& X2_reverb = reverb_render_spectrum;
|
|
const auto& Y2 = capture_spectrum;
|
|
const auto& E2 = subtractor_spectrum;
|
|
|
|
if (++blocks_since_reset_ < startup_phase_length_blocks__) {
|
|
return;
|
|
}
|
|
|
|
subband_erle_estimator_.Update(X2_reverb, Y2, E2, converged_filter,
|
|
onset_detection);
|
|
fullband_erle_estimator_.Update(X2_reverb, Y2, E2, converged_filter);
|
|
}
|
|
|
|
void ErleEstimator::Dump(
|
|
const std::unique_ptr<ApmDataDumper>& data_dumper) const {
|
|
fullband_erle_estimator_.Dump(data_dumper);
|
|
subband_erle_estimator_.Dump(data_dumper);
|
|
}
|
|
|
|
} // namespace webrtc
|