From b13a7d5b1c6a30a6f662a7f2153f6ccbfe3c1c34 Mon Sep 17 00:00:00 2001 From: "andrew@webrtc.org" Date: Thu, 27 Mar 2014 00:11:11 +0000 Subject: [PATCH] Don't disable experimental AGC in audioproc. R=aluebs@webrtc.org Review URL: https://webrtc-codereview.appspot.com/10769004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5798 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_processing/test/process_test.cc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/webrtc/modules/audio_processing/test/process_test.cc b/webrtc/modules/audio_processing/test/process_test.cc index 2f02727f8..2d7c065f9 100644 --- a/webrtc/modules/audio_processing/test/process_test.cc +++ b/webrtc/modules/audio_processing/test/process_test.cc @@ -100,7 +100,7 @@ void usage() { printf(" --ns_prob_file FILE\n"); printf("\n -vad Voice activity detection\n"); printf(" --vad_out_file FILE\n"); - printf("\n -expns Experimental Noise suppression\n"); + printf("\n -expns Experimental noise suppression\n"); printf("\n Level metrics (enabled by default)\n"); printf(" --no_level_metrics\n"); printf("\n"); @@ -142,9 +142,7 @@ void void_main(int argc, char* argv[]) { printf("Try `process_test --help' for more information.\n\n"); } - Config config; - config.Set(new ExperimentalAgc(false)); - scoped_ptr apm(AudioProcessing::Create(config)); + scoped_ptr apm(AudioProcessing::Create()); ASSERT_TRUE(apm.get() != NULL); const char* pb_filename = NULL;