| Index: webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c
|
| diff --git a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c
|
| index 43a15794321a8649c7ae67f3029f304cc5b51cf3..40c3bf86177d0ffaeb616ef07b2c8bd6fc190ced 100644
|
| --- a/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c
|
| +++ b/webrtc/modules/audio_coding/codecs/isac/fix/source/lattice_c.c
|
| @@ -25,11 +25,11 @@ void WebRtcIsacfix_FilterArLoop(int16_t* ar_g_Q0, // Input samples
|
| int16_t* ar_f_Q0, // Input samples
|
| int16_t* cth_Q15, // Filter coefficients
|
| int16_t* sth_Q15, // Filter coefficients
|
| - int16_t order_coef) { // order of the filter
|
| + size_t order_coef) { // order of the filter
|
| int n = 0;
|
|
|
| for (n = 0; n < HALF_SUBFRAMELEN - 1; n++) {
|
| - int k = 0;
|
| + size_t k = 0;
|
| int16_t tmpAR = 0;
|
| int32_t tmp32 = 0;
|
| int32_t tmp32_2 = 0;
|
|
|