Index: webrtc/modules/audio_coding/codecs/ilbc/refiner.h |
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/refiner.h b/webrtc/modules/audio_coding/codecs/ilbc/refiner.h |
index d13996152df44213fd3aec112e23c861149543a3..f8a2abc2d6979c5a62357090275f5a60f5b30735 100644 |
--- a/webrtc/modules/audio_coding/codecs/ilbc/refiner.h |
+++ b/webrtc/modules/audio_coding/codecs/ilbc/refiner.h |
@@ -30,11 +30,11 @@ |
*---------------------------------------------------------------*/ |
void WebRtcIlbcfix_Refiner( |
- int16_t *updStartPos, /* (o) updated start point (Q-2) */ |
+ size_t *updStartPos, /* (o) updated start point (Q-2) */ |
int16_t *idata, /* (i) original data buffer */ |
- int16_t idatal, /* (i) dimension of idata */ |
- int16_t centerStartPos, /* (i) beginning center segment */ |
- int16_t estSegPos, /* (i) estimated beginning other segment (Q-2) */ |
+ size_t idatal, /* (i) dimension of idata */ |
+ size_t centerStartPos, /* (i) beginning center segment */ |
+ size_t estSegPos, /* (i) estimated beginning other segment (Q-2) */ |
int16_t *surround, /* (i/o) The contribution from this sequence |
summed with earlier contributions */ |
int16_t gain /* (i) Gain to use for this sequence */ |