OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2017 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 #include "webrtc/modules/audio_processing/aec3/residual_echo_estimator.h" |
| 12 |
| 13 #include "webrtc/base/random.h" |
| 14 #include "webrtc/modules/audio_processing/aec3/aec_state.h" |
| 15 #include "webrtc/modules/audio_processing/aec3/aec3_fft.h" |
| 16 #include "webrtc/modules/audio_processing/aec3/delay_handler.h" |
| 17 #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h" |
| 18 #include "webrtc/test/gtest.h" |
| 19 |
| 20 namespace webrtc { |
| 21 namespace {} // namespace |
| 22 |
| 23 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID) |
| 24 |
| 25 // Verifies that the check for non-null output gains works. |
| 26 TEST(ResidualEchoEstimator, NullOutputGains) { |
| 27 AecState aec_state; |
| 28 FftBuffer X_buffer(10, std::vector<size_t>(1, 10)); |
| 29 std::vector<std::array<float, kFftLengthBy2Plus1>> H2; |
| 30 std::array<float, kFftLengthBy2Plus1> E2_main; |
| 31 std::array<float, kFftLengthBy2Plus1> E2_shadow; |
| 32 std::array<float, kFftLengthBy2Plus1> S2_linear; |
| 33 std::array<float, kFftLengthBy2Plus1> S2_fallback; |
| 34 std::array<float, kFftLengthBy2Plus1> Y2; |
| 35 DelayHandler delay_handler; |
| 36 |
| 37 EXPECT_DEATH(ResidualEchoEstimator().Estimate( |
| 38 aec_state, X_buffer, H2, E2_main, E2_shadow, S2_linear, |
| 39 S2_fallback, Y2, delay_handler, nullptr), |
| 40 ""); |
| 41 } |
| 42 |
| 43 #endif |
| 44 |
| 45 TEST(ResidualEchoEstimator, BasicTest) { |
| 46 ResidualEchoEstimator estimator; |
| 47 AecState aec_state; |
| 48 FftBuffer X_buffer(10, std::vector<size_t>(1, 10)); |
| 49 std::array<float, kFftLengthBy2Plus1> E2_main; |
| 50 std::array<float, kFftLengthBy2Plus1> E2_shadow; |
| 51 std::array<float, kFftLengthBy2Plus1> S2_linear; |
| 52 std::array<float, kFftLengthBy2Plus1> S2_fallback; |
| 53 std::array<float, kFftLengthBy2Plus1> Y2; |
| 54 DelayHandler delay_handler; |
| 55 std::array<float, kFftLengthBy2Plus1> R2; |
| 56 EchoPathVariability echo_path_variability(false, false); |
| 57 std::array<float, kBlockSize> x; |
| 58 std::vector<std::array<float, kFftLengthBy2Plus1>> H2(10); |
| 59 Random random_generator(42U); |
| 60 FftData X; |
| 61 std::array<float, kBlockSize> x_old; |
| 62 Aec3Fft fft; |
| 63 |
| 64 for (auto& H2_k : H2) { |
| 65 H2_k.fill(0.01f); |
| 66 } |
| 67 H2[2].fill(10.f); |
| 68 |
| 69 constexpr float kLevel = 10.f; |
| 70 E2_shadow.fill(kLevel); |
| 71 E2_main.fill(kLevel); |
| 72 S2_linear.fill(kLevel); |
| 73 S2_fallback.fill(kLevel); |
| 74 Y2.fill(kLevel); |
| 75 |
| 76 delay_handler.UpdateDelays(H2, rtc::Optional<size_t>(2)); |
| 77 |
| 78 for (int k = 0; k < 100; ++k) { |
| 79 RandomizeSampleVector(&random_generator, x); |
| 80 fft.PaddedFft(x, x_old, &X); |
| 81 X_buffer.Insert(X); |
| 82 |
| 83 aec_state.Update(X_buffer, E2_main, E2_shadow, Y2, x, delay_handler, |
| 84 echo_path_variability, false); |
| 85 |
| 86 estimator.Estimate(aec_state, X_buffer, H2, E2_main, E2_shadow, S2_linear, |
| 87 S2_fallback, Y2, delay_handler, &R2); |
| 88 } |
| 89 std::for_each(R2.begin(), R2.end(), |
| 90 [&](float a) { EXPECT_NEAR(kLevel, a, 0.1f); }); |
| 91 } |
| 92 |
| 93 } // namespace webrtc |
OLD | NEW |