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

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

Issue 2678423005: Finalization of the first version of EchoCanceller 3 (Closed)
Patch Set: Fixed failing unittest Created 3 years, 10 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
(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/power_echo_model.h"
12
13 #include <array>
14
15 #include "webrtc/base/random.h"
16 #include "webrtc/modules/audio_processing/aec3/aec_state.h"
17 #include "webrtc/modules/audio_processing/aec3/aec3_common.h"
18 #include "webrtc/modules/audio_processing/aec3/aec3_fft.h"
19 #include "webrtc/modules/audio_processing/aec3/echo_path_variability.h"
20 #include "webrtc/modules/audio_processing/test/echo_canceller_test_tools.h"
21
22 #include "webrtc/test/gtest.h"
23
24 namespace webrtc {
25 namespace {
26
27 std::string ProduceDebugText(size_t delay, bool known_delay) {
28 std::ostringstream ss;
29 ss << "True delay: " << delay;
30 ss << ", Delay known: " << (known_delay ? "true" : "false");
31 return ss.str();
32 }
33
34 } // namespace
35
36 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
37
38 // Verifies that the check for non-null output parameter works.
39 TEST(PowerEchoModel, NullEstimateEchoOutput) {
40 PowerEchoModel model;
41 std::array<float, kFftLengthBy2Plus1> Y2;
42 AecState aec_state;
43 FftBuffer X_buffer(Aec3Optimization::kNone, model.MinFarendBufferLength(),
44 std::vector<size_t>(1, model.MinFarendBufferLength()));
45
46 EXPECT_DEATH(model.EstimateEcho(X_buffer, Y2, aec_state, nullptr), "");
47 }
48
49 #endif
50
51 TEST(PowerEchoModel, BasicSetup) {
52 PowerEchoModel model;
53 Random random_generator(42U);
54 AecState aec_state;
55 Aec3Fft fft;
56 std::array<float, kFftLengthBy2Plus1> Y2;
57 std::array<float, kFftLengthBy2Plus1> S2;
58 std::array<float, kFftLengthBy2Plus1> E2_main;
59 std::array<float, kFftLengthBy2Plus1> E2_shadow;
60 std::array<float, kBlockSize> x_old;
61 std::array<float, kBlockSize> y;
62 std::vector<float> x(kBlockSize, 0.f);
63 FftData X;
64 FftData Y;
65 x_old.fill(0.f);
66
67 FftBuffer X_buffer(Aec3Optimization::kNone, model.MinFarendBufferLength(),
68 std::vector<size_t>(1, model.MinFarendBufferLength()));
69
70 for (size_t delay_samples : {0, 64, 301}) {
71 DelayBuffer<float> delay_buffer(delay_samples);
72 auto model_applier = [&](int num_iterations, float y_scale,
73 bool known_delay) {
74 for (int k = 0; k < num_iterations; ++k) {
75 RandomizeSampleVector(&random_generator, x);
76 delay_buffer.Delay(x, y);
77 std::for_each(y.begin(), y.end(), [&](float& a) { a *= y_scale; });
78
79 fft.PaddedFft(x, x_old, &X);
80 X_buffer.Insert(X);
81
82 fft.ZeroPaddedFft(y, &Y);
83 Y.Spectrum(Aec3Optimization::kNone, &Y2);
84
85 aec_state.Update(std::vector<std::array<float, kFftLengthBy2Plus1>>(
86 10, std::array<float, kFftLengthBy2Plus1>()),
87 known_delay ? rtc::Optional<size_t>(delay_samples)
88 : rtc::Optional<size_t>(),
89 X_buffer, E2_main, E2_shadow, Y2, x,
90 EchoPathVariability(false, false), false);
91
92 model.EstimateEcho(X_buffer, Y2, aec_state, &S2);
93 }
94 };
95
96 for (int j = 0; j < 2; ++j) {
97 bool known_delay = j == 0;
98 SCOPED_TRACE(ProduceDebugText(delay_samples, known_delay));
99 // Verify that the echo path estimates converges downwards to a fairly
100 // tight bound estimate.
101 model_applier(600, 1.f, known_delay);
102 for (size_t k = 1; k < S2.size() - 1; ++k) {
103 EXPECT_LE(Y2[k], 2.f * S2[k]);
104 }
105
106 // Verify that stronger echo paths are detected immediately.
107 model_applier(100, 10.f, known_delay);
108 for (size_t k = 1; k < S2.size() - 1; ++k) {
109 EXPECT_LE(Y2[k], 5.f * S2[k]);
110 }
111
112 // Verify that there is a delay until a weaker echo path is detected.
113 model_applier(50, 100.f, known_delay);
114 model_applier(50, 1.f, known_delay);
115 for (size_t k = 1; k < S2.size() - 1; ++k) {
116 EXPECT_LE(100.f * Y2[k], S2[k]);
117 }
118
119 // Verify that an echo path change causes the echo path estimate to be
120 // reset.
121 model_applier(600, 0.1f, known_delay);
122 model.HandleEchoPathChange(EchoPathVariability(true, false));
123 model_applier(50, 0.1f, known_delay);
124 for (size_t k = 1; k < S2.size() - 1; ++k) {
125 EXPECT_LE(10.f * Y2[k], S2[k]);
126 }
127 }
128 }
129 }
130
131 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698