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/output_selector.h" |
| 12 |
| 13 #include <algorithm> |
| 14 #include <array> |
| 15 |
| 16 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" |
| 17 #include "webrtc/test/gtest.h" |
| 18 |
| 19 namespace webrtc { |
| 20 |
| 21 // Verifies that the switching between the signals in the output works as |
| 22 // intended. |
| 23 TEST(OutputSelector, ProperSwitching) { |
| 24 OutputSelector selector; |
| 25 |
| 26 constexpr int kNumBlocksToSwitch = 15; |
| 27 |
| 28 std::array<float, kBlockSize> weaker; |
| 29 std::array<float, kBlockSize> stronger; |
| 30 std::array<float, kBlockSize> y; |
| 31 std::array<float, kBlockSize> e; |
| 32 weaker.fill(10.f); |
| 33 stronger.fill(20.f); |
| 34 |
| 35 bool y_is_weakest = false; |
| 36 |
| 37 const auto form_e_and_y = [&](bool y_equals_weaker) { |
| 38 if (y_equals_weaker) { |
| 39 std::copy(weaker.begin(), weaker.end(), y.begin()); |
| 40 std::copy(stronger.begin(), stronger.end(), e.begin()); |
| 41 } else { |
| 42 std::copy(stronger.begin(), stronger.end(), y.begin()); |
| 43 std::copy(weaker.begin(), weaker.end(), e.begin()); |
| 44 } |
| 45 }; |
| 46 |
| 47 for (int k = 0; k < 30; ++k) { |
| 48 // Verify that it takes a while for the signals transition to take effect. |
| 49 for (int j = 0; j < kNumBlocksToSwitch; ++j) { |
| 50 form_e_and_y(y_is_weakest); |
| 51 selector.FormLinearOutput(e, y); |
| 52 EXPECT_EQ(stronger, y); |
| 53 EXPECT_EQ(selector.UseSubtractorOutput(), y_is_weakest); |
| 54 } |
| 55 |
| 56 // Verify that the transition block is a mix between the signals. |
| 57 form_e_and_y(y_is_weakest); |
| 58 selector.FormLinearOutput(e, y); |
| 59 EXPECT_NE(weaker, y); |
| 60 EXPECT_NE(stronger, y); |
| 61 EXPECT_EQ(selector.UseSubtractorOutput(), !y_is_weakest); |
| 62 |
| 63 y_is_weakest = !y_is_weakest; |
| 64 } |
| 65 } |
| 66 |
| 67 } // namespace webrtc |
OLD | NEW |