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

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/abs_quant.c

Issue 1230503003: Update a ton of audio code to use size_t more correctly and in general reduce (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: Resync 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/abs_quant.c
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/abs_quant.c b/webrtc/modules/audio_coding/codecs/ilbc/abs_quant.c
index 75fc970ddecf8d9126857e6cf8e05c440f9f943f..263749ad2a00991a61a847c45ee8a153c2ad1684 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/abs_quant.c
+++ b/webrtc/modules/audio_coding/codecs/ilbc/abs_quant.c
@@ -36,7 +36,7 @@ void WebRtcIlbcfix_AbsQuant(
int16_t *weightDenum /* (i) denominator of synthesis filter */
) {
int16_t *syntOut;
- int16_t quantLen[2];
+ size_t quantLen[2];
/* Stack based */
int16_t syntOutBuf[LPC_FILTERORDER+STATE_SHORT_LEN_30MS];
« no previous file with comments | « webrtc/modules/audio_coding/codecs/g722/test/testG722.cc ('k') | webrtc/modules/audio_coding/codecs/ilbc/abs_quant_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698