| 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 21 matching lines...) Expand all Loading... |
| 32 const AecState& aec_state, | 32 const AecState& aec_state, |
| 33 const FftBuffer& X_buffer, | 33 const FftBuffer& X_buffer, |
| 34 const std::vector<std::array<float, kFftLengthBy2Plus1>>& H2, | 34 const std::vector<std::array<float, kFftLengthBy2Plus1>>& H2, |
| 35 const std::array<float, kFftLengthBy2Plus1>& E2_main, | 35 const std::array<float, kFftLengthBy2Plus1>& E2_main, |
| 36 const std::array<float, kFftLengthBy2Plus1>& E2_shadow, | 36 const std::array<float, kFftLengthBy2Plus1>& E2_shadow, |
| 37 const std::array<float, kFftLengthBy2Plus1>& S2_linear, | 37 const std::array<float, kFftLengthBy2Plus1>& S2_linear, |
| 38 const std::array<float, kFftLengthBy2Plus1>& S2_fallback, | 38 const std::array<float, kFftLengthBy2Plus1>& S2_fallback, |
| 39 const std::array<float, kFftLengthBy2Plus1>& Y2, | 39 const std::array<float, kFftLengthBy2Plus1>& Y2, |
| 40 std::array<float, kFftLengthBy2Plus1>* R2); | 40 std::array<float, kFftLengthBy2Plus1>* R2); |
| 41 | 41 |
| 42 void HandleEchoPathChange(const EchoPathVariability& echo_path_variability); |
| 43 |
| 42 private: | 44 private: |
| 43 std::array<float, kFftLengthBy2Plus1> echo_path_gain_; | 45 std::array<float, kFftLengthBy2Plus1> echo_path_gain_; |
| 44 size_t active_render_counter_ = 0; | |
| 45 size_t blocks_since_last_saturation_ = 1000; | 46 size_t blocks_since_last_saturation_ = 1000; |
| 46 | 47 |
| 47 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); | 48 RTC_DISALLOW_COPY_AND_ASSIGN(ResidualEchoEstimator); |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 } // namespace webrtc | 51 } // namespace webrtc |
| 51 | 52 |
| 52 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ | 53 #endif // WEBRTC_MODULES_AUDIO_PROCESSING_AEC3_RESIDUAL_ECHO_ESTIMATOR_H_ |
| OLD | NEW |