| Index: webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.c
|
| diff --git a/webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.c b/webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.c
|
| index 1a18a1d27fbdca6abcc234a6720aee09c6fb3d2c..d26fb5d6c9e798a013e51f8bc097bbf9d2cb3cb5 100644
|
| --- a/webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.c
|
| +++ b/webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.c
|
| @@ -23,7 +23,7 @@
|
| void WebRtcIlbcfix_AbsQuantLoop(int16_t *syntOutIN, int16_t *in_weightedIN,
|
| int16_t *weightDenumIN, int16_t *quantLenIN,
|
| int16_t *idxVecIN ) {
|
| - int n, k1, k2;
|
| + int k1, k2;
|
| int16_t index;
|
| int32_t toQW32;
|
| int32_t toQ32;
|
| @@ -36,8 +36,6 @@ void WebRtcIlbcfix_AbsQuantLoop(int16_t *syntOutIN, int16_t *in_weightedIN,
|
| int16_t *quantLen = quantLenIN;
|
| int16_t *idxVec = idxVecIN;
|
|
|
| - n=0;
|
| -
|
| for(k1=0;k1<2;k1++) {
|
| for(k2=0;k2<quantLen[k1];k2++){
|
|
|
| @@ -81,7 +79,6 @@ void WebRtcIlbcfix_AbsQuantLoop(int16_t *syntOutIN, int16_t *in_weightedIN,
|
|
|
| *syntOut = (int16_t) (tmp16a + (int32_t)(*in_weighted) - toQW32);
|
|
|
| - n++;
|
| syntOut++; in_weighted++;
|
| }
|
| /* Update perceptual weighting filter at subframe border */
|
|
|