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

Unified Diff: webrtc/modules/audio_processing/test/audio_processing_unittest.cc

Issue 1166463006: Revert r9378 "Rename APM Config DelayCorrection to ExtendedFilter" (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 6 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/test/audio_processing_unittest.cc
diff --git a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
index c19449ae2528f3b0eb3eecce6e88638f4ddbd098..d3c292a3c4c2dc33c46f714f222098224e602dcc 100644
--- a/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
+++ b/webrtc/modules/audio_processing/test/audio_processing_unittest.cc
@@ -1587,7 +1587,7 @@ TEST_F(ApmTest, SplittingFilter) {
// Make sure we have extended filter enabled. This makes sure nothing is
// touched until we have a farend frame.
Config config;
- config.Set<ExtendedFilter>(new ExtendedFilter(true));
+ config.Set<DelayCorrection>(new DelayCorrection(true));
apm_->SetExtraOptions(config);
SetFrameTo(frame_, 1000);
frame_copy.CopyFrom(*frame_);
@@ -1969,8 +1969,8 @@ TEST_F(ApmTest, Process) {
Config config;
config.Set<ExperimentalAgc>(new ExperimentalAgc(false));
- config.Set<ExtendedFilter>(
- new ExtendedFilter(test->use_aec_extended_filter()));
+ config.Set<DelayCorrection>(
+ new DelayCorrection(test->use_aec_extended_filter()));
apm_.reset(AudioProcessing::Create(config));
EnableAllComponents();
« no previous file with comments | « webrtc/modules/audio_processing/include/audio_processing.h ('k') | webrtc/modules/audio_processing/test/process_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698