From 4b1cd5c5c0ff128d9a00cb7833cdf687f2f6c0af Mon Sep 17 00:00:00 2001 From: "turaj@webrtc.org" Date: Wed, 27 Mar 2013 20:42:48 +0000 Subject: [PATCH] G722-stereo has been missing when creating AudioDecoder. Review URL: https://webrtc-codereview.appspot.com/1266004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3734 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/audio_coding/neteq4/audio_decoder.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webrtc/modules/audio_coding/neteq4/audio_decoder.cc b/webrtc/modules/audio_coding/neteq4/audio_decoder.cc index 3a53a19052..8af5f11a87 100644 --- a/webrtc/modules/audio_coding/neteq4/audio_decoder.cc +++ b/webrtc/modules/audio_coding/neteq4/audio_decoder.cc @@ -176,6 +176,8 @@ AudioDecoder* AudioDecoder::CreateAudioDecoder(NetEqDecoder codec_type) { #ifdef WEBRTC_CODEC_G722 case kDecoderG722: return new AudioDecoderG722; + case kDecoderG722_2ch: + return new AudioDecoderG722Stereo; #endif #ifdef WEBRTC_CODEC_OPUS case kDecoderOpus: