Index: webrtc/modules/audio_coding/codecs/ilbc/decode.c |
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/decode.c b/webrtc/modules/audio_coding/codecs/ilbc/decode.c |
index 035460bb2042ac0392eed6de5879752e3211d03f..9918de201ed4ff0e088d6de8f1665422fdb73acc 100644 |
--- a/webrtc/modules/audio_coding/codecs/ilbc/decode.c |
+++ b/webrtc/modules/audio_coding/codecs/ilbc/decode.c |
@@ -103,9 +103,10 @@ void WebRtcIlbcfix_DecodeImpl( |
WebRtcIlbcfix_DecodeResidual(iLBCdec_inst, iLBCbits_inst, decresidual, syntdenum); |
/* preparing the plc for a future loss! */ |
- WebRtcIlbcfix_DoThePlc( PLCresidual, PLClpc, 0, |
- decresidual, syntdenum + (LPC_FILTERORDER + 1)*(iLBCdec_inst->nsub - 1), |
- (int16_t)(iLBCdec_inst->last_lag), iLBCdec_inst); |
+ WebRtcIlbcfix_DoThePlc( |
+ PLCresidual, PLClpc, 0, decresidual, |
+ syntdenum + (LPC_FILTERORDER + 1) * (iLBCdec_inst->nsub - 1), |
+ (int16_t)(iLBCdec_inst->last_lag), iLBCdec_inst); |
/* Use the output from doThePLC */ |
WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->blockl); |
@@ -120,8 +121,8 @@ void WebRtcIlbcfix_DecodeImpl( |
/* packet loss conceal */ |
- WebRtcIlbcfix_DoThePlc( PLCresidual, PLClpc, 1, |
- decresidual, syntdenum, (int16_t)(iLBCdec_inst->last_lag), iLBCdec_inst); |
+ WebRtcIlbcfix_DoThePlc(PLCresidual, PLClpc, 1, decresidual, syntdenum, |
+ (int16_t)(iLBCdec_inst->last_lag), iLBCdec_inst); |
WEBRTC_SPL_MEMCPY_W16(decresidual, PLCresidual, iLBCdec_inst->blockl); |