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

Unified Diff: webrtc/modules/audio_coding/codecs/ilbc/defines.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/defines.h
diff --git a/webrtc/modules/audio_coding/codecs/ilbc/defines.h b/webrtc/modules/audio_coding/codecs/ilbc/defines.h
index 5fcd4a01e48e531c7546cc593d90f1ef46e4d36e..2faaea15fc3606002f10b4f371079a56fb874128 100644
--- a/webrtc/modules/audio_coding/codecs/ilbc/defines.h
+++ b/webrtc/modules/audio_coding/codecs/ilbc/defines.h
@@ -213,7 +213,7 @@ typedef struct IlbcDecoder_ {
/* enhancer state information */
int use_enhancer;
int16_t enh_buf[ENH_BUFL+ENH_BUFL_FILTEROVERHEAD];
- int16_t enh_period[ENH_NBLOCKS_TOT];
+ size_t enh_period[ENH_NBLOCKS_TOT];
} IlbcDecoder;
« no previous file with comments | « webrtc/modules/audio_coding/codecs/ilbc/constants.c ('k') | webrtc/modules/audio_coding/codecs/ilbc/enhancer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698