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

Side by Side 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, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 206
207 int16_t old_syntdenum[(LPC_FILTERORDER + 1)*NSUB_MAX]; 207 int16_t old_syntdenum[(LPC_FILTERORDER + 1)*NSUB_MAX];
208 208
209 /* state of output HP filter */ 209 /* state of output HP filter */
210 int16_t hpimemx[2]; 210 int16_t hpimemx[2];
211 int16_t hpimemy[4]; 211 int16_t hpimemy[4];
212 212
213 /* enhancer state information */ 213 /* enhancer state information */
214 int use_enhancer; 214 int use_enhancer;
215 int16_t enh_buf[ENH_BUFL+ENH_BUFL_FILTEROVERHEAD]; 215 int16_t enh_buf[ENH_BUFL+ENH_BUFL_FILTEROVERHEAD];
216 int16_t enh_period[ENH_NBLOCKS_TOT]; 216 size_t enh_period[ENH_NBLOCKS_TOT];
217 217
218 } IlbcDecoder; 218 } IlbcDecoder;
219 219
220 #endif 220 #endif
OLDNEW
« 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