| Index: webrtc/modules/audio_processing/test/process_test.cc
|
| diff --git a/webrtc/modules/audio_processing/test/process_test.cc b/webrtc/modules/audio_processing/test/process_test.cc
|
| index 0f28a444929941dfb7836642cef935e8c9c1b87a..715762f31e100e9d1f025d0c671cffa045488477 100644
|
| --- a/webrtc/modules/audio_processing/test/process_test.cc
|
| +++ b/webrtc/modules/audio_processing/test/process_test.cc
|
| @@ -261,7 +261,10 @@ void void_main(int argc, char* argv[]) {
|
| config.Set<ExtendedFilter>(new ExtendedFilter(true));
|
|
|
| } else if (strcmp(argv[i], "--no_reported_delay") == 0) {
|
| - config.Set<ReportedDelay>(new ReportedDelay(false));
|
| + config.Set<DelayAgnostic>(new DelayAgnostic(true));
|
| +
|
| + } else if (strcmp(argv[i], "--delay_agnostic") == 0) {
|
| + config.Set<DelayAgnostic>(new DelayAgnostic(true));
|
|
|
| } else if (strcmp(argv[i], "-aecm") == 0) {
|
| ASSERT_EQ(apm->kNoError, apm->echo_control_mobile()->Enable(true));
|
|
|