| 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 3a2e5a23449ce6802d25ac01069731320c4550a9..b9588e5679d3c4f719d5bca0e173bf168c05536e 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);
|
|
|
|
|