From b097670264bf59b295e20534fa32123e0f3a32da Mon Sep 17 00:00:00 2001 From: "tina.legrand@webrtc.org" Date: Wed, 12 Jun 2013 07:41:42 +0000 Subject: [PATCH] G722_1/G722_1C codecs won't instantiate BUG=issue1890 R=turaj@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1650004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@4215 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_coding/main/source/acm_codec_database.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webrtc/modules/audio_coding/main/source/acm_codec_database.cc b/webrtc/modules/audio_coding/main/source/acm_codec_database.cc index 1bef6ba53..636368919 100644 --- a/webrtc/modules/audio_coding/main/source/acm_codec_database.cc +++ b/webrtc/modules/audio_coding/main/source/acm_codec_database.cc @@ -649,8 +649,8 @@ ACMGenericCodec* ACMCodecDB::CreateCodecInstance(const CodecInst* codec_inst) { default: { return NULL; } - return new ACMG722_1(codec_id); } + return new ACMG722_1(codec_id); #endif } case 32000: { @@ -672,8 +672,8 @@ ACMGenericCodec* ACMCodecDB::CreateCodecInstance(const CodecInst* codec_inst) { default: { return NULL; } - return new ACMG722_1C(codec_id); } + return new ACMG722_1C(codec_id); #endif } }