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

Unified Diff: webrtc/modules/audio_processing/aec3/subtractor_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 side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/audio_processing/aec3/subtractor_unittest.cc
diff --git a/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc b/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc
index 34a9ae45cd008364a71b65546efb4c8ef82335db..48c9c5744425d966d53aeac006c4aa39816f5d55 100644
--- a/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc
+++ b/webrtc/modules/audio_processing/aec3/subtractor_unittest.cc
@@ -10,8 +10,6 @@
#include "webrtc/modules/audio_processing/aec3/subtractor.h"
-// TODO(peah): Reactivate once the next CL has landed.
-#if 0
#include <algorithm>
#include <numeric>
#include <string>
@@ -30,17 +28,15 @@ float RunSubtractorTest(int num_blocks_to_process,
const std::vector<int>& blocks_with_echo_path_changes) {
ApmDataDumper data_dumper(42);
Subtractor subtractor(&data_dumper, DetectOptimization());
- std::vector<float> x(kBlockSize, 0.f);
+ std::vector<std::vector<float>> x(3, std::vector<float>(kBlockSize, 0.f));
std::vector<float> y(kBlockSize, 0.f);
std::array<float, kBlockSize> x_old;
SubtractorOutput output;
- FftBuffer X_buffer(
- Aec3Optimization::kNone, subtractor.MinFarendBufferLength(),
- std::vector<size_t>(1, subtractor.MinFarendBufferLength()));
+ RenderBuffer render_buffer(Aec3Optimization::kNone, 3, kAdaptiveFilterLength,
+ std::vector<size_t>(1, kAdaptiveFilterLength));
RenderSignalAnalyzer render_signal_analyzer;
Random random_generator(42U);
Aec3Fft fft;
- FftData X;
std::array<float, kFftLengthBy2Plus1> Y2;
std::array<float, kFftLengthBy2Plus1> E2_main;
std::array<float, kFftLengthBy2Plus1> E2_shadow;
@@ -52,15 +48,14 @@ float RunSubtractorTest(int num_blocks_to_process,
DelayBuffer<float> delay_buffer(delay_samples);
for (int k = 0; k < num_blocks_to_process; ++k) {
- RandomizeSampleVector(&random_generator, x);
+ RandomizeSampleVector(&random_generator, x[0]);
if (uncorrelated_inputs) {
RandomizeSampleVector(&random_generator, y);
} else {
- delay_buffer.Delay(x, y);
+ delay_buffer.Delay(x[0], y);
}
- fft.PaddedFft(x, x_old, &X);
- X_buffer.Insert(X);
- render_signal_analyzer.Update(X_buffer, aec_state.FilterDelay());
+ render_buffer.Insert(x);
+ render_signal_analyzer.Update(render_buffer, aec_state.FilterDelay());
// Handle echo path changes.
if (std::find(blocks_with_echo_path_changes.begin(),
@@ -68,12 +63,13 @@ float RunSubtractorTest(int num_blocks_to_process,
k) != blocks_with_echo_path_changes.end()) {
subtractor.HandleEchoPathChange(EchoPathVariability(true, true));
}
- subtractor.Process(X_buffer, y, render_signal_analyzer, false, &output);
+ subtractor.Process(render_buffer, y, render_signal_analyzer, aec_state,
+ &output);
+ aec_state.HandleEchoPathChange(EchoPathVariability(false, false));
aec_state.Update(subtractor.FilterFrequencyResponse(),
rtc::Optional<size_t>(delay_samples / kBlockSize),
- X_buffer, E2_main, E2_shadow, Y2, x,
- EchoPathVariability(false, false), false);
+ render_buffer, E2_main, Y2, x[0], false);
}
const float output_power = std::inner_product(
@@ -107,31 +103,29 @@ TEST(Subtractor, NullDataDumper) {
TEST(Subtractor, DISABLED_NullOutput) {
ApmDataDumper data_dumper(42);
Subtractor subtractor(&data_dumper, DetectOptimization());
- FftBuffer X_buffer(
- Aec3Optimization::kNone, subtractor.MinFarendBufferLength(),
- std::vector<size_t>(1, subtractor.MinFarendBufferLength()));
+ RenderBuffer render_buffer(Aec3Optimization::kNone, 3, kAdaptiveFilterLength,
+ std::vector<size_t>(1, kAdaptiveFilterLength));
RenderSignalAnalyzer render_signal_analyzer;
std::vector<float> y(kBlockSize, 0.f);
- EXPECT_DEATH(
- subtractor.Process(X_buffer, y, render_signal_analyzer, false, nullptr),
- "");
+ EXPECT_DEATH(subtractor.Process(render_buffer, y, render_signal_analyzer,
+ AecState(), nullptr),
+ "");
}
// Verifies the check for the capture signal size.
TEST(Subtractor, WrongCaptureSize) {
ApmDataDumper data_dumper(42);
Subtractor subtractor(&data_dumper, DetectOptimization());
- FftBuffer X_buffer(
- Aec3Optimization::kNone, subtractor.MinFarendBufferLength(),
- std::vector<size_t>(1, subtractor.MinFarendBufferLength()));
+ RenderBuffer render_buffer(Aec3Optimization::kNone, 3, kAdaptiveFilterLength,
+ std::vector<size_t>(1, kAdaptiveFilterLength));
RenderSignalAnalyzer render_signal_analyzer;
std::vector<float> y(kBlockSize - 1, 0.f);
SubtractorOutput output;
- EXPECT_DEATH(
- subtractor.Process(X_buffer, y, render_signal_analyzer, false, &output),
- "");
+ EXPECT_DEATH(subtractor.Process(render_buffer, y, render_signal_analyzer,
+ AecState(), &output),
+ "");
}
#endif
@@ -175,5 +169,3 @@ TEST(Subtractor, EchoPathChangeReset) {
}
} // namespace webrtc
-
-#endif
« no previous file with comments | « webrtc/modules/audio_processing/aec3/subtractor_output.h ('k') | webrtc/modules/audio_processing/aec3/suppression_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698