| Index: webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.h
|
| diff --git a/webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.h b/webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.h
|
| index 4c7ed3e633d0a52bd19d8ec83fb34bef8e256977..7d7fb6fccc9550bbca6a3e75a1feee93332caebe 100644
|
| --- a/webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.h
|
| +++ b/webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.h
|
| @@ -24,14 +24,13 @@
|
| /*----------------------------------------------------------------*
|
| * Find index in array such that the array element with said
|
| * index is the element of said array closest to "value"
|
| - * according to the squared-error criterion
|
| *---------------------------------------------------------------*/
|
|
|
| void WebRtcIlbcfix_NearestNeighbor(
|
| - int16_t *index, /* (o) index of array element closest to value */
|
| - int16_t *array, /* (i) data array (Q2) */
|
| - int16_t value, /* (i) value (Q2) */
|
| - size_t arlength /* (i) dimension of data array (==8) */
|
| + size_t* index, /* (o) index of array element closest to value */
|
| + const size_t* array, /* (i) data array (Q2) */
|
| + size_t value, /* (i) value (Q2) */
|
| + size_t arlength /* (i) dimension of data array (==ENH_NBLOCKS_TOT) */
|
| );
|
|
|
| #endif
|
|
|