Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: webrtc/modules/audio_processing/aec3/output_selector_unittest.cc

Issue 2782423003: Major updates to the echo removal functionality in AEC3 (Closed)
Patch Set: Added initialization of uninitialized vector Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
11 #include "webrtc/modules/audio_processing/aec3/output_selector.h" 11 #include "webrtc/modules/audio_processing/aec3/output_selector.h"
12 12
13 #include <algorithm> 13 #include <algorithm>
14 #include <array> 14 #include <array>
15 15
16 #include "webrtc/modules/audio_processing/aec3/aec3_common.h" 16 #include "webrtc/modules/audio_processing/aec3/aec3_common.h"
17 #include "webrtc/test/gtest.h" 17 #include "webrtc/test/gtest.h"
18 18
19 namespace webrtc { 19 namespace webrtc {
20 20
21 // Verifies that the switching between the signals in the output works as 21 // Verifies that the switching between the signals in the output works as
22 // intended. 22 // intended.
23 TEST(OutputSelector, ProperSwitching) { 23 TEST(OutputSelector, ProperSwitching) {
24 OutputSelector selector; 24 OutputSelector selector;
25 25
26 constexpr int kNumBlocksToSwitchToSubtractor = 3;
27 constexpr int kNumBlocksToSwitchFromSubtractor = 10;
28
29 std::array<float, kBlockSize> weaker;
30 std::array<float, kBlockSize> stronger;
31 std::array<float, kBlockSize> y; 26 std::array<float, kBlockSize> y;
32 std::array<float, kBlockSize> e; 27 std::array<float, kBlockSize> e;
33 weaker.fill(10.f); 28 std::array<float, kBlockSize> e_ref;
34 stronger.fill(20.f); 29 std::array<float, kBlockSize> y_ref;
35 30 auto init_blocks = [](std::array<float, kBlockSize>* e,
36 bool y_is_weakest = false; 31 std::array<float, kBlockSize>* y) {
37 32 e->fill(10.f);
38 const auto form_e_and_y = [&](bool y_equals_weaker) { 33 y->fill(20.f);
39 if (y_equals_weaker) {
40 std::copy(weaker.begin(), weaker.end(), y.begin());
41 std::copy(stronger.begin(), stronger.end(), e.begin());
42 } else {
43 std::copy(stronger.begin(), stronger.end(), y.begin());
44 std::copy(weaker.begin(), weaker.end(), e.begin());
45 }
46 }; 34 };
47 35
48 for (int k = 0; k < 30; ++k) { 36 init_blocks(&e_ref, &y_ref);
49 // Verify that it takes a while for the signals transition to take effect.
50 const int num_blocks_to_switch = y_is_weakest
51 ? kNumBlocksToSwitchFromSubtractor
52 : kNumBlocksToSwitchToSubtractor;
53 for (int j = 0; j < num_blocks_to_switch; ++j) {
54 form_e_and_y(y_is_weakest);
55 selector.FormLinearOutput(e, y);
56 EXPECT_EQ(stronger, y);
57 EXPECT_EQ(y_is_weakest, selector.UseSubtractorOutput());
58 }
59 37
60 // Verify that the transition block is a mix between the signals. 38 init_blocks(&e, &y);
61 form_e_and_y(y_is_weakest); 39 selector.FormLinearOutput(false, e, y);
62 selector.FormLinearOutput(e, y); 40 EXPECT_EQ(y_ref, y);
63 EXPECT_NE(weaker, y);
64 EXPECT_NE(stronger, y);
65 EXPECT_EQ(!y_is_weakest, selector.UseSubtractorOutput());
66 41
67 y_is_weakest = !y_is_weakest; 42 init_blocks(&e, &y);
68 } 43 selector.FormLinearOutput(true, e, y);
44 EXPECT_NE(e_ref, y);
45 EXPECT_NE(y_ref, y);
46
47 init_blocks(&e, &y);
48 selector.FormLinearOutput(true, e, y);
49 EXPECT_EQ(e_ref, y);
50
51 init_blocks(&e, &y);
52 selector.FormLinearOutput(true, e, y);
53 EXPECT_EQ(e_ref, y);
54
55 init_blocks(&e, &y);
56 selector.FormLinearOutput(false, e, y);
57 EXPECT_NE(e_ref, y);
58 EXPECT_NE(y_ref, y);
59
60 init_blocks(&e, &y);
61 selector.FormLinearOutput(false, e, y);
62 EXPECT_EQ(y_ref, y);
63
64 init_blocks(&e, &y);
65 selector.FormLinearOutput(false, e, y);
66 EXPECT_EQ(y_ref, y);
69 } 67 }
70 68
71 } // namespace webrtc 69 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/modules/audio_processing/aec3/output_selector.cc ('k') | webrtc/modules/audio_processing/aec3/power_echo_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698