From 145f04f0c4e84e26ae89dc6b68c7b7451cfae511 Mon Sep 17 00:00:00 2001 From: "tina.legrand@webrtc.org" Date: Sat, 18 Feb 2012 00:32:16 +0000 Subject: [PATCH] Changing Celt to use stereo as default. Review URL: https://webrtc-codereview.appspot.com/397009 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1720 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/audio_coding/main/source/acm_codec_database.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/audio_coding/main/source/acm_codec_database.cc b/src/modules/audio_coding/main/source/acm_codec_database.cc index 8ed25a510f..c623d296c4 100644 --- a/src/modules/audio_coding/main/source/acm_codec_database.cc +++ b/src/modules/audio_coding/main/source/acm_codec_database.cc @@ -117,7 +117,7 @@ const int kDynamicPayloadtypes[ACMCodecDB::kMaxNumCodecs] = { defined(WEBRTC_CODEC_AMR) || defined(WEBRTC_CODEC_AMRWB) || \ defined(WEBRTC_CODEC_CELT) || defined(WEBRTC_CODEC_G729_1) || \ defined(WEBRTC_CODEC_SPEEX) || defined(WEBRTC_CODEC_G722_1) || \ - defined(WEBRTC_CODEC_G722_1C) || defined(WEBRTC_CODEC_CELT)) + defined(WEBRTC_CODEC_G722_1C)) static int count_database = 0; #endif @@ -146,7 +146,7 @@ const CodecInst ACMCodecDB::database_[] = { {kDynamicPayloadtypes[count_database++], "AMR-WB", 16000, 320, 1, 20000}, #endif #ifdef WEBRTC_CODEC_CELT - {kDynamicPayloadtypes[count_database++], "CELT", 32000, 320, 1, 64000}, + {kDynamicPayloadtypes[count_database++], "CELT", 32000, 320, 2, 64000}, #endif #ifdef WEBRTC_CODEC_G722 {9, "G722", 16000, 320, 1, 64000},