Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(440)

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/refiner.h

Issue 1305983003: Convert some more things to size_t. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Support Android's C89 mode Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 */
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/nearest_neighbor.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/refiner.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698