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

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

Issue 2678423005: Finalization of the first version of EchoCanceller 3 (Closed)
Patch Set: Changes in response to reviewer comments 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/aec3_fft.h"
12
13 #include <algorithm>
14
15 #include "webrtc/test/gtest.h"
16
17 namespace webrtc {
18
19 #if RTC_DCHECK_IS_ON && GTEST_HAS_DEATH_TEST && !defined(WEBRTC_ANDROID)
20
21 // Verifies that the check for non-null input in Fft works.
22 TEST(Aec3Fft, NullFftInput) {
23 Aec3Fft fft;
24 FftData X;
25 EXPECT_DEATH(fft.Fft(nullptr, &X), "");
26 }
27
28 // Verifies that the check for non-null input in Fft works.
29 TEST(Aec3Fft, NullFftOutput) {
30 Aec3Fft fft;
31 std::array<float, kFftLength> x;
32 EXPECT_DEATH(fft.Fft(&x, nullptr), "");
33 }
34
35 // Verifies that the check for non-null output in Ifft works.
36 TEST(Aec3Fft, NullIfftOutput) {
37 Aec3Fft fft;
38 FftData X;
39 EXPECT_DEATH(fft.Ifft(X, nullptr), "");
40 }
41
42 // Verifies that the check for non-null output in ZeroPaddedFft works.
43 TEST(Aec3Fft, NullZeroPaddedFftOutput) {
44 Aec3Fft fft;
45 std::array<float, kFftLengthBy2> x;
46 EXPECT_DEATH(fft.ZeroPaddedFft(x, nullptr), "");
47 }
48
49 // Verifies that the check for input length in ZeroPaddedFft works.
50 TEST(Aec3Fft, ZeroPaddedFftWrongInputLength) {
51 Aec3Fft fft;
52 FftData X;
53 std::array<float, kFftLengthBy2 - 1> x;
54 EXPECT_DEATH(fft.ZeroPaddedFft(x, &X), "");
55 }
56
57 // Verifies that the check for non-null output in PaddedFft works.
58 TEST(Aec3Fft, NullPaddedFftOutput) {
59 Aec3Fft fft;
60 std::array<float, kFftLengthBy2> x;
61 std::array<float, kFftLengthBy2> x_old;
62 EXPECT_DEATH(fft.PaddedFft(x, x_old, nullptr), "");
63 }
64
65 // Verifies that the check for input length in PaddedFft works.
66 TEST(Aec3Fft, PaddedFftWrongInputLength) {
67 Aec3Fft fft;
68 FftData X;
69 std::array<float, kFftLengthBy2 - 1> x;
70 std::array<float, kFftLengthBy2> x_old;
71 EXPECT_DEATH(fft.PaddedFft(x, x_old, &X), "");
72 }
73
74 // Verifies that the check for length in the old value in PaddedFft works.
75 TEST(Aec3Fft, PaddedFftWrongOldValuesLength) {
76 Aec3Fft fft;
77 FftData X;
78 std::array<float, kFftLengthBy2> x;
79 std::array<float, kFftLengthBy2 - 1> x_old;
80 EXPECT_DEATH(fft.PaddedFft(x, x_old, &X), "");
81 }
82
83 #endif
84
85 // Verifies that Fft works as intended.
86 TEST(Aec3Fft, Fft) {
87 Aec3Fft fft;
88 FftData X;
89 std::array<float, kFftLength> x;
90 x.fill(0.f);
91 fft.Fft(&x, &X);
92 std::for_each(X.re.begin(), X.re.end(), [](float a) { EXPECT_EQ(0.f, a); });
93 std::for_each(X.im.begin(), X.im.end(), [](float a) { EXPECT_EQ(0.f, a); });
94
95 x.fill(0.f);
96 x[0] = 1.f;
97 fft.Fft(&x, &X);
98 std::for_each(X.re.begin(), X.re.end(), [](float a) { EXPECT_EQ(1.f, a); });
99 std::for_each(X.im.begin(), X.im.end(), [](float a) { EXPECT_EQ(0.f, a); });
100
101 x.fill(1.f);
102 fft.Fft(&x, &X);
103 EXPECT_EQ(128.f, X.re[0]);
104 std::for_each(X.re.begin() + 1, X.re.end(),
105 [](float a) { EXPECT_EQ(0.f, a); });
106 std::for_each(X.im.begin(), X.im.end(), [](float a) { EXPECT_EQ(0.f, a); });
107 }
108
109 // Verifies that InverseFft works as intended.
110 TEST(Aec3Fft, Ifft) {
111 Aec3Fft fft;
112 FftData X;
113 std::array<float, kFftLength> x;
114
115 X.re.fill(0.f);
116 X.im.fill(0.f);
117 fft.Ifft(X, &x);
118 std::for_each(x.begin(), x.end(), [](float a) { EXPECT_EQ(0.f, a); });
119
120 X.re.fill(1.f);
121 X.im.fill(0.f);
122 fft.Ifft(X, &x);
123 EXPECT_EQ(64.f, x[0]);
124 std::for_each(x.begin() + 1, x.end(), [](float a) { EXPECT_EQ(0.f, a); });
125
126 X.re.fill(0.f);
127 X.re[0] = 128;
128 X.im.fill(0.f);
129 fft.Ifft(X, &x);
130 std::for_each(x.begin(), x.end(), [](float a) { EXPECT_EQ(64.f, a); });
131 }
132
133 // Verifies that InverseFft and Fft work as intended.
134 TEST(Aec3Fft, FftAndIfft) {
135 Aec3Fft fft;
136 FftData X;
137 std::array<float, kFftLength> x;
138 std::array<float, kFftLength> x_ref;
139
140 int v = 0;
141 for (int k = 0; k < 20; ++k) {
142 for (size_t j = 0; j < x.size(); ++j) {
143 x[j] = v++;
144 x_ref[j] = x[j] * 64.f;
145 }
146 fft.Fft(&x, &X);
147 fft.Ifft(X, &x);
148 for (size_t j = 0; j < x.size(); ++j) {
149 EXPECT_NEAR(x_ref[j], x[j], 0.001f);
150 }
151 }
152 }
153
154 // Verifies that ZeroPaddedFft work as intended.
155 TEST(Aec3Fft, ZeroPaddedFft) {
156 Aec3Fft fft;
157 FftData X;
158 std::array<float, kFftLengthBy2> x_in;
159 std::array<float, kFftLength> x_ref;
160 std::array<float, kFftLength> x_out;
161
162 int v = 0;
163 x_ref.fill(0.f);
164 for (int k = 0; k < 20; ++k) {
165 for (size_t j = 0; j < x_in.size(); ++j) {
166 x_in[j] = v++;
167 x_ref[j + kFftLengthBy2] = x_in[j] * 64.f;
168 }
169 fft.ZeroPaddedFft(x_in, &X);
170 fft.Ifft(X, &x_out);
171 for (size_t j = 0; j < x_out.size(); ++j) {
172 EXPECT_NEAR(x_ref[j], x_out[j], 0.1f);
173 }
174 }
175 }
176
177 // Verifies that ZeroPaddedFft work as intended.
178 TEST(Aec3Fft, PaddedFft) {
179 Aec3Fft fft;
180 FftData X;
181 std::array<float, kFftLengthBy2> x_in;
182 std::array<float, kFftLength> x_out;
183 std::array<float, kFftLengthBy2> x_old;
184 std::array<float, kFftLengthBy2> x_old_ref;
185 std::array<float, kFftLength> x_ref;
186
187 int v = 0;
188 x_old.fill(0.f);
189 for (int k = 0; k < 20; ++k) {
190 for (size_t j = 0; j < x_in.size(); ++j) {
191 x_in[j] = v++;
192 }
193
194 std::copy(x_old.begin(), x_old.end(), x_ref.begin());
195 std::copy(x_in.begin(), x_in.end(), x_ref.begin() + kFftLengthBy2);
196 std::copy(x_in.begin(), x_in.end(), x_old_ref.begin());
197 std::for_each(x_ref.begin(), x_ref.end(), [](float& a) { a *= 64.f; });
198
199 fft.PaddedFft(x_in, x_old, &X);
200 fft.Ifft(X, &x_out);
201
202 for (size_t j = 0; j < x_out.size(); ++j) {
203 EXPECT_NEAR(x_ref[j], x_out[j], 0.1f);
204 }
205
206 EXPECT_EQ(x_old_ref, x_old);
207 }
208 }
209
210 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698