From 372ae83228cba221771740301d67bb07ad58da81 Mon Sep 17 00:00:00 2001 From: "henrik.lundin@webrtc.org" Date: Tue, 22 Apr 2014 07:21:03 +0000 Subject: [PATCH] Reland "Make VoiceEngine choose ACM2 by default"" This cl was originally committed as r5923, but was reverted in r5926 due to a blocking bug (issue 3143). The blocking bug was resolved in r5936. BUG=2996 TBR=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12279004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5950 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/voice_engine/voice_engine_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/voice_engine/voice_engine_impl.cc b/webrtc/voice_engine/voice_engine_impl.cc index 2f524bb01..52882f54c 100644 --- a/webrtc/voice_engine/voice_engine_impl.cc +++ b/webrtc/voice_engine/voice_engine_impl.cc @@ -86,7 +86,7 @@ int VoiceEngineImpl::Release() { VoiceEngine* VoiceEngine::Create() { Config* config = new Config(); - config->Set(new AudioCodingModuleFactory()); + config->Set(new NewAudioCodingModuleFactory()); return GetVoiceEngine(config, true); }