| Index: webrtc/modules/audio_coding/codecs/ilbc/cb_search.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/ilbc/cb_search.h b/webrtc/modules/audio_coding/codecs/ilbc/cb_search.h
|
| index 2fe236f4c5dcf5ee09d993a2536c990eb614dddc..ed1580c09dab01ba53f9dfc3011e481e007e5661 100644
|
| --- a/webrtc/modules/audio_coding/codecs/ilbc/cb_search.h
|
| +++ b/webrtc/modules/audio_coding/codecs/ilbc/cb_search.h
|
| @@ -26,10 +26,10 @@ void WebRtcIlbcfix_CbSearch(
|
| int16_t *gain_index, /* (o) Gain quantization indices */
|
| int16_t *intarget, /* (i) Target vector for encoding */
|
| int16_t *decResidual,/* (i) Decoded residual for codebook construction */
|
| - int16_t lMem, /* (i) Length of buffer */
|
| - int16_t lTarget, /* (i) Length of vector */
|
| + size_t lMem, /* (i) Length of buffer */
|
| + size_t lTarget, /* (i) Length of vector */
|
| int16_t *weightDenum,/* (i) weighting filter coefficients in Q12 */
|
| - int16_t block /* (i) the subblock number */
|
| + size_t block /* (i) the subblock number */
|
| );
|
|
|
| #endif
|
|
|