Index: webrtc/modules/audio_coding/codecs/ilbc/cb_update_best_index.c |
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/cb_update_best_index.c b/webrtc/modules/audio_coding/codecs/ilbc/cb_update_best_index.c |
index 6fdec27aba1c5298ff6f814ad25cee61696c91b5..fc27ea9f6cebfab965e9dd564a9c4eefbd23e78f 100644 |
--- a/webrtc/modules/audio_coding/codecs/ilbc/cb_update_best_index.c |
+++ b/webrtc/modules/audio_coding/codecs/ilbc/cb_update_best_index.c |
@@ -23,13 +23,13 @@ |
void WebRtcIlbcfix_CbUpdateBestIndex( |
int32_t CritNew, /* (i) New Potentially best Criteria */ |
int16_t CritNewSh, /* (i) Shift value of above Criteria */ |
- int16_t IndexNew, /* (i) Index of new Criteria */ |
+ size_t IndexNew, /* (i) Index of new Criteria */ |
int32_t cDotNew, /* (i) Cross dot of new index */ |
int16_t invEnergyNew, /* (i) Inversed energy new index */ |
int16_t energyShiftNew, /* (i) Energy shifts of new index */ |
int32_t *CritMax, /* (i/o) Maximum Criteria (so far) */ |
int16_t *shTotMax, /* (i/o) Shifts of maximum criteria */ |
- int16_t *bestIndex, /* (i/o) Index that corresponds to |
+ size_t *bestIndex, /* (i/o) Index that corresponds to |
maximum criteria */ |
int16_t *bestGain) /* (i/o) Gain in Q14 that corresponds |
to maximum criteria */ |