OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #ifndef WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
| 12 #define WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
| 13 |
| 14 #include <algorithm> |
| 15 #include <vector> |
| 16 |
| 17 #include "webrtc/base/array_view.h" |
| 18 #include "webrtc/base/constructormagic.h" |
| 19 #include "webrtc/base/optional.h" |
| 20 #include "webrtc/modules/audio_processing/aec3/aec3_constants.h" |
| 21 #include "webrtc/modules/audio_processing/aec3/aec_state.h" |
| 22 #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h" |
| 23 #include "webrtc/modules/audio_processing/aec3/delay_handler.h" |
| 24 #include "webrtc/modules/audio_processing/aec3/erle_estimator.h" |
| 25 #include "webrtc/modules/audio_processing/aec3/erl_estimator.h" |
| 26 #include "webrtc/modules/audio_processing/aec3/fft_buffer.h" |
| 27 #include "webrtc/modules/audio_processing/logging/apm_data_dumper.h" |
| 28 |
| 29 namespace webrtc { |
| 30 |
| 31 class ResidualEchoEstimator { |
| 32 public: |
| 33 ResidualEchoEstimator(); |
| 34 ~ResidualEchoEstimator(); |
| 35 |
| 36 void Estimate(const AecState& aec_state, |
| 37 const FftBuffer& X_buffer, |
| 38 const std::vector<std::array<float, kFftLengthBy2Plus1>>& H2, |
| 39 const std::array<float, kFftLengthBy2Plus1>& E2_main, |
| 40 const std::array<float, kFftLengthBy2Plus1>& E2_shadow, |
| 41 const std::array<float, kFftLengthBy2Plus1>& S2_linear, |
| 42 const std::array<float, kFftLengthBy2Plus1>& S2_fallback, |
| 43 const std::array<float, kFftLengthBy2Plus1>& Y2, |
| 44 const DelayHandler& delay_handler, |
| 45 std::array<float, kFftLengthBy2Plus1>* R2); |
| 46 |
| 47 private: |
| 48 std::array<float, kFftLengthBy2Plus1> echo_path_gain_; |
| 49 |
| 50 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); |
| 51 }; |
| 52 |
| 53 } // namespace webrtc |
| 54 |
| 55 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
OLD | NEW |