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

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

Issue 1230693002: Update audio code to use size_t more correctly, (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Review comments 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/get_cd_vec.h
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/get_cd_vec.h b/webrtc/modules/audio_coding/codecs/ilbc/get_cd_vec.h
index 1c5ac8f16e3faef36936c94a830f27e82ddc0630..07f67a2aa5eaaf561dee9ed4ad0db9606e53f07b 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/get_cd_vec.h
+++ b/webrtc/modules/audio_coding/codecs/ilbc/get_cd_vec.h
@@ -22,9 +22,9 @@
void WebRtcIlbcfix_GetCbVec(
int16_t *cbvec, /* (o) Constructed codebook vector */
int16_t *mem, /* (i) Codebook buffer */
- int16_t index, /* (i) Codebook index */
- int16_t lMem, /* (i) Length of codebook buffer */
- int16_t cbveclen /* (i) Codebook vector length */
+ size_t index, /* (i) Codebook index */
+ size_t lMem, /* (i) Length of codebook buffer */
+ size_t cbveclen /* (i) Codebook vector length */
);
#endif
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/frame_classify.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/get_cd_vec.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698