| Index: webrtc/modules/audio_coding/codecs/ilbc/comp_corr.c
|
| diff --git a/webrtc/modules/audio_coding/codecs/ilbc/comp_corr.c b/webrtc/modules/audio_coding/codecs/ilbc/comp_corr.c
|
| index a53e8a77f1ee137af1c469781f1a67c2b1967e1e..7653cb0c25dabc850d7ce5ea3558545a79b98f11 100644
|
| --- a/webrtc/modules/audio_coding/codecs/ilbc/comp_corr.c
|
| +++ b/webrtc/modules/audio_coding/codecs/ilbc/comp_corr.c
|
| @@ -27,9 +27,9 @@ void WebRtcIlbcfix_CompCorr(
|
| int32_t *corr, /* (o) cross correlation */
|
| int32_t *ener, /* (o) energy */
|
| int16_t *buffer, /* (i) signal buffer */
|
| - int16_t lag, /* (i) pitch lag */
|
| - int16_t bLen, /* (i) length of buffer */
|
| - int16_t sRange, /* (i) correlation search length */
|
| + size_t lag, /* (i) pitch lag */
|
| + size_t bLen, /* (i) length of buffer */
|
| + size_t sRange, /* (i) correlation search length */
|
| int16_t scale /* (i) number of rightshifts to use */
|
| ){
|
| int16_t *w16ptr;
|
|
|