OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2017 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 | 41 |
42 // Estimates the residual echo power based on the echo return loss enhancement | 42 // Estimates the residual echo power based on the echo return loss enhancement |
43 // (ERLE) and the linear power estimate. | 43 // (ERLE) and the linear power estimate. |
44 void LinearEstimate(const std::array<float, kFftLengthBy2Plus1>& S2_linear, | 44 void LinearEstimate(const std::array<float, kFftLengthBy2Plus1>& S2_linear, |
45 const std::array<float, kFftLengthBy2Plus1>& erle, | 45 const std::array<float, kFftLengthBy2Plus1>& erle, |
46 size_t delay, | 46 size_t delay, |
47 std::array<float, kFftLengthBy2Plus1>* R2); | 47 std::array<float, kFftLengthBy2Plus1>* R2); |
48 | 48 |
49 // Estimates the residual echo power based on the estimate of the echo path | 49 // Estimates the residual echo power based on the estimate of the echo path |
50 // gain. | 50 // gain. |
51 void NonLinearEstimate(const std::array<float, kFftLengthBy2Plus1>& X2, | 51 void NonLinearEstimate(float echo_path_gain, |
| 52 const std::array<float, kFftLengthBy2Plus1>& X2, |
52 const std::array<float, kFftLengthBy2Plus1>& Y2, | 53 const std::array<float, kFftLengthBy2Plus1>& Y2, |
53 std::array<float, kFftLengthBy2Plus1>* R2); | 54 std::array<float, kFftLengthBy2Plus1>* R2); |
54 | 55 |
55 // Adds the estimated unmodelled echo power to the residual echo power | 56 // Adds the estimated unmodelled echo power to the residual echo power |
56 // estimate. | 57 // estimate. |
57 void AddEchoReverb(const std::array<float, kFftLengthBy2Plus1>& S2, | 58 void AddEchoReverb(const std::array<float, kFftLengthBy2Plus1>& S2, |
58 bool saturated_echo, | 59 bool saturated_echo, |
59 size_t delay, | 60 size_t delay, |
60 float reverb_decay_factor, | 61 float reverb_decay_factor, |
61 std::array<float, kFftLengthBy2Plus1>* R2); | 62 std::array<float, kFftLengthBy2Plus1>* R2); |
62 | 63 |
63 std::array<float, kFftLengthBy2Plus1> R2_old_; | 64 std::array<float, kFftLengthBy2Plus1> R2_old_; |
64 std::array<int, kFftLengthBy2Plus1> R2_hold_counter_; | 65 std::array<int, kFftLengthBy2Plus1> R2_hold_counter_; |
65 std::array<float, kFftLengthBy2Plus1> R2_reverb_; | 66 std::array<float, kFftLengthBy2Plus1> R2_reverb_; |
66 int S2_old_index_ = 0; | 67 int S2_old_index_ = 0; |
67 std::array<std::array<float, kFftLengthBy2Plus1>, kAdaptiveFilterLength> | 68 std::array<std::array<float, kFftLengthBy2Plus1>, kAdaptiveFilterLength> |
68 S2_old_; | 69 S2_old_; |
69 bool headset_detected_cached_ = false; | 70 std::array<float, kFftLengthBy2Plus1> X2_noise_floor_; |
| 71 std::array<int, kFftLengthBy2Plus1> X2_noise_floor_counter_; |
70 | 72 |
71 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); | 73 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); |
72 }; | 74 }; |
73 | 75 |
74 } // namespace webrtc | 76 } // namespace webrtc |
75 | 77 |
76 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ | 78 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
OLD | NEW |