| 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 0d3921ba1852f70d667cc6e6be78614584197b08..185bc142d508a316a71a6155dfdf63f0371248cc 100644
|
| --- a/webrtc/modules/audio_processing/test/process_test.cc
|
| +++ b/webrtc/modules/audio_processing/test/process_test.cc
|
| @@ -82,6 +82,7 @@ void usage() {
|
| printf(" --extended_filter\n");
|
| printf(" --no_reported_delay\n");
|
| printf(" --aec3\n");
|
| + printf(" --refined_adaptive_filter\n");
|
| printf("\n -aecm Echo control mobile\n");
|
| printf(" --aecm_echo_path_in_file FILE\n");
|
| printf(" --aecm_echo_path_out_file FILE\n");
|
| @@ -271,6 +272,9 @@ void void_main(int argc, char* argv[]) {
|
| } else if (strcmp(argv[i], "--aec3") == 0) {
|
| config.Set<EchoCanceller3>(new EchoCanceller3(true));
|
|
|
| + } else if (strcmp(argv[i], "--refined_adaptive_filter") == 0) {
|
| + config.Set<RefinedAdaptiveFilter>(new RefinedAdaptiveFilter(true));
|
| +
|
| } else if (strcmp(argv[i], "-aecm") == 0) {
|
| ASSERT_EQ(apm->kNoError, apm->echo_control_mobile()->Enable(true));
|
|
|
|
|