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 18 matching lines...) Expand all Loading... | |
29 ~ResidualEchoEstimator(); | 29 ~ResidualEchoEstimator(); |
30 | 30 |
31 void Estimate(bool using_subtractor_output, | 31 void Estimate(bool using_subtractor_output, |
32 const AecState& aec_state, | 32 const AecState& aec_state, |
33 const RenderBuffer& render_buffer, | 33 const RenderBuffer& render_buffer, |
34 const std::array<float, kFftLengthBy2Plus1>& S2_linear, | 34 const std::array<float, kFftLengthBy2Plus1>& S2_linear, |
35 const std::array<float, kFftLengthBy2Plus1>& Y2, | 35 const std::array<float, kFftLengthBy2Plus1>& Y2, |
36 std::array<float, kFftLengthBy2Plus1>* R2); | 36 std::array<float, kFftLengthBy2Plus1>* R2); |
37 | 37 |
38 private: | 38 private: |
39 // Resets the state. | |
40 void Reset(); | |
41 | |
42 // Estimates the residual echo power based on the erle and the linear power | |
AleBzk
2017/04/07 09:34:39
"erle" stands for Echo Return Loss Enhancement, ri
peah-webrtc
2017/04/07 12:19:44
Good point! Will do that!
Done.
| |
43 // estimate. | |
44 void LinearEstimate(const std::array<float, kFftLengthBy2Plus1>& S2_linear, | |
45 const std::array<float, kFftLengthBy2Plus1>& erle, | |
46 size_t delay, | |
47 std::array<float, kFftLengthBy2Plus1>* R2); | |
48 | |
49 // Estimates the residual echo power based on the estimate of the echo path | |
50 // gain. | |
51 void NonLinearEstimate(const std::array<float, kFftLengthBy2Plus1>& X2, | |
52 const std::array<float, kFftLengthBy2Plus1>& Y2, | |
53 std::array<float, kFftLengthBy2Plus1>* R2); | |
54 | |
55 // Adds the estimated unmodelled echo power to the residual echo power | |
56 // estimate. | |
57 void AddEchoReverb(const std::array<float, kFftLengthBy2Plus1>& S2, | |
58 bool saturated_echo, | |
59 size_t delay, | |
60 float reverb_decay_factor, | |
61 std::array<float, kFftLengthBy2Plus1>* R2); | |
62 | |
39 std::array<float, kFftLengthBy2Plus1> R2_old_; | 63 std::array<float, kFftLengthBy2Plus1> R2_old_; |
40 std::array<int, kFftLengthBy2Plus1> R2_hold_counter_; | 64 std::array<int, kFftLengthBy2Plus1> R2_hold_counter_; |
65 std::array<float, kFftLengthBy2Plus1> R2_reverb_; | |
66 int S2_old_index_ = 0; | |
67 std::array<std::array<float, kFftLengthBy2Plus1>, kAdaptiveFilterLength> | |
68 S2_old_; | |
69 bool headset_detected_cached_ = false; | |
41 | 70 |
42 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); | 71 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); |
43 }; | 72 }; |
44 | 73 |
45 } // namespace webrtc | 74 } // namespace webrtc |
46 | 75 |
47 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ | 76 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
OLD | NEW |