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
This commit is contained in:
henrik.lundin@webrtc.org 2014-04-22 07:21:03 +00:00
parent 5964fe0f86
commit 372ae83228

View File

@ -86,7 +86,7 @@ int VoiceEngineImpl::Release() {
VoiceEngine* VoiceEngine::Create() { VoiceEngine* VoiceEngine::Create() {
Config* config = new Config(); Config* config = new Config();
config->Set<AudioCodingModuleFactory>(new AudioCodingModuleFactory()); config->Set<AudioCodingModuleFactory>(new NewAudioCodingModuleFactory());
return GetVoiceEngine(config, true); return GetVoiceEngine(config, true);
} }