This CL was generated by running git ls-files | grep -P "(\.h|\.cc)$" | grep -v 'sdk/' | grep -v 'rtc_base/ssl_' | \ grep -v 'fake_rtc_certificate_generator.h' | grep -v 'modules/audio_device/win/' | \ grep -v 'system_wrappers/source/clock.cc' | grep -v 'rtc_base/trace_event.h' | \ grep -v 'modules/audio_coding/codecs/ilbc/' | grep -v 'screen_capturer_mac.h' | \ grep -v 'spl_inl_mips.h' | grep -v 'data_size_unittest.cc' | grep -v 'timestamp_unittest.cc' \ | xargs clang-format -i ; git cl format Most of these changes are clang-format grouping and reordering includes differently. Bug: webrtc:9340 Change-Id: Ic83ddbc169bfacd21883e381b5181c3dd4fe8a63 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/144051 Commit-Queue: Jonas Olsson <jonasolsson@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#28505}
90 lines
3.4 KiB
C++
90 lines
3.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.
|
|
*/
|
|
|
|
#ifndef MODULES_AUDIO_PROCESSING_AEC3_ERLE_ESTIMATOR_H_
|
|
#define MODULES_AUDIO_PROCESSING_AEC3_ERLE_ESTIMATOR_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
|
|
#include "absl/types/optional.h"
|
|
#include "api/array_view.h"
|
|
#include "api/audio/echo_canceller3_config.h"
|
|
#include "modules/audio_processing/aec3/aec3_common.h"
|
|
#include "modules/audio_processing/aec3/fullband_erle_estimator.h"
|
|
#include "modules/audio_processing/aec3/render_buffer.h"
|
|
#include "modules/audio_processing/aec3/signal_dependent_erle_estimator.h"
|
|
#include "modules/audio_processing/aec3/subband_erle_estimator.h"
|
|
#include "modules/audio_processing/logging/apm_data_dumper.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// Estimates the echo return loss enhancement. One estimate is done per subband
|
|
// and another one is done using the aggreation of energy over all the subbands.
|
|
class ErleEstimator {
|
|
public:
|
|
ErleEstimator(size_t startup_phase_length_blocks_,
|
|
const EchoCanceller3Config& config);
|
|
~ErleEstimator();
|
|
|
|
// Resets the fullband ERLE estimator and the subbands ERLE estimators.
|
|
void Reset(bool delay_change);
|
|
|
|
// Updates the ERLE estimates.
|
|
void Update(const RenderBuffer& render_buffer,
|
|
const std::vector<std::array<float, kFftLengthBy2Plus1>>&
|
|
filter_frequency_response,
|
|
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);
|
|
|
|
// Returns the most recent subband ERLE estimates.
|
|
const std::array<float, kFftLengthBy2Plus1>& Erle() const {
|
|
return use_signal_dependent_erle_ ? signal_dependent_erle_estimator_.Erle()
|
|
: subband_erle_estimator_.Erle();
|
|
}
|
|
// Returns the subband ERLE that are estimated during onsets. Used
|
|
// for logging/testing.
|
|
rtc::ArrayView<const float> ErleOnsets() const {
|
|
return subband_erle_estimator_.ErleOnsets();
|
|
}
|
|
|
|
// Returns the fullband ERLE estimate.
|
|
float FullbandErleLog2() const {
|
|
return fullband_erle_estimator_.FullbandErleLog2();
|
|
}
|
|
|
|
// Returns an estimation of the current linear filter quality based on the
|
|
// current and past fullband ERLE estimates. The returned value is a float
|
|
// between 0 and 1 where 1 indicates that, at this current time instant, the
|
|
// linear filter is reaching its maximum subtraction performance.
|
|
absl::optional<float> GetInstLinearQualityEstimate() const {
|
|
return fullband_erle_estimator_.GetInstLinearQualityEstimate();
|
|
}
|
|
|
|
void Dump(const std::unique_ptr<ApmDataDumper>& data_dumper) const;
|
|
|
|
private:
|
|
const size_t startup_phase_length_blocks__;
|
|
const bool use_signal_dependent_erle_;
|
|
FullBandErleEstimator fullband_erle_estimator_;
|
|
SubbandErleEstimator subband_erle_estimator_;
|
|
SignalDependentErleEstimator signal_dependent_erle_estimator_;
|
|
size_t blocks_since_reset_ = 0;
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_AUDIO_PROCESSING_AEC3_ERLE_ESTIMATOR_H_
|