Index: webrtc/modules/audio_coding/codecs/g722/g722_interface.c |
diff --git a/webrtc/modules/audio_coding/codecs/g722/g722_interface.c b/webrtc/modules/audio_coding/codecs/g722/g722_interface.c |
index d06c588d0d1f8d783d8ba73820d3f8a49d2199fe..25d75ee6e98ffc735d4f36b8f29d79cbf8740244 100644 |
--- a/webrtc/modules/audio_coding/codecs/g722/g722_interface.c |
+++ b/webrtc/modules/audio_coding/codecs/g722/g722_interface.c |
@@ -52,8 +52,8 @@ int16_t WebRtcG722_Encode(G722EncInst *G722enc_inst, |
{ |
unsigned char *codechar = (unsigned char*) encoded; |
// Encode the input speech vector |
- return WebRtc_g722_encode((G722EncoderState*) G722enc_inst, |
- codechar, speechIn, len); |
+ return WebRtc_g722_encode((G722EncoderState*) G722enc_inst, codechar, |
+ speechIn, len); |
} |
int16_t WebRtcG722_CreateDecoder(G722DecInst **G722dec_inst) |
@@ -93,8 +93,8 @@ int16_t WebRtcG722_Decode(G722DecInst *G722dec_inst, |
{ |
// Decode the G.722 encoder stream |
*speechType=G722_WEBRTC_SPEECH; |
- return WebRtc_g722_decode((G722DecoderState*) G722dec_inst, |
- decoded, encoded, len); |
+ return WebRtc_g722_decode((G722DecoderState*) G722dec_inst, decoded, |
+ encoded, len); |
} |
int16_t WebRtcG722_Version(char *versionStr, short len) |