| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |