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/suppression_gain.h" |
| 12 |
| 13 #include "webrtc/test/gtest.h" |
| 14 |
| 15 namespace webrtc { |
| 16 |
| 17 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID) |
| 18 |
| 19 // Verifies that the check for non-null output gains works. |
| 20 TEST(SuppressionGain, NullOutputGains) { |
| 21 std::array<float, kFftLengthBy2Plus1> E2; |
| 22 std::array<float, kFftLengthBy2Plus1> R2; |
| 23 std::array<float, kFftLengthBy2Plus1> N2; |
| 24 EXPECT_DEATH(SuppressionGain().GetGain(E2, R2, N2, 0.1f, nullptr), ""); |
| 25 } |
| 26 |
| 27 #endif |
| 28 |
| 29 // Does a sanity check that the gains are correctly computed. |
| 30 TEST(SuppressionGain, BasicGainComputation) { |
| 31 SuppressionGain suppression_gain; |
| 32 std::array<float, kFftLengthBy2Plus1> E2; |
| 33 std::array<float, kFftLengthBy2Plus1> R2; |
| 34 std::array<float, kFftLengthBy2Plus1> N2; |
| 35 std::array<float, kFftLengthBy2Plus1> g; |
| 36 |
| 37 // Ensure that a strong noise is detected to mask any echoes. |
| 38 E2.fill(10.f); |
| 39 R2.fill(0.1f); |
| 40 N2.fill(100.f); |
| 41 for (int k = 0; k < 10; ++k) { |
| 42 suppression_gain.GetGain(E2, R2, N2, 0.1f, &g); |
| 43 } |
| 44 std::for_each(g.begin(), g.end(), |
| 45 [](float a) { EXPECT_NEAR(1.f, a, 0.001); }); |
| 46 |
| 47 // Ensure that a strong nearend is detected to mask any echoes. |
| 48 E2.fill(100.f); |
| 49 R2.fill(0.1f); |
| 50 N2.fill(0.f); |
| 51 for (int k = 0; k < 10; ++k) { |
| 52 suppression_gain.GetGain(E2, R2, N2, 0.1f, &g); |
| 53 } |
| 54 std::for_each(g.begin(), g.end(), |
| 55 [](float a) { EXPECT_NEAR(1.f, a, 0.001); }); |
| 56 |
| 57 // Ensure that a strong echo is suppressed. |
| 58 E2.fill(0.1f); |
| 59 R2.fill(100.f); |
| 60 N2.fill(0.f); |
| 61 for (int k = 0; k < 10; ++k) { |
| 62 suppression_gain.GetGain(E2, R2, N2, 0.1f, &g); |
| 63 } |
| 64 std::for_each(g.begin(), g.end(), |
| 65 [](float a) { EXPECT_NEAR(0.f, a, 0.001); }); |
| 66 } |
| 67 |
| 68 } // namespace webrtc |
OLD | NEW |