Use int for channel_coeffs instead of int16_t

This commit is contained in:
Mashiat Sarker Shakkhar 2011-12-09 01:17:09 +06:00
parent 6d4deecfdf
commit 153a853718
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ typedef struct WmallDecodeCtx {
int lpc_scaling;
int lpc_intbits;
int16_t channel_coeffs[2][2048]; // FIXME: should be 32-bit / 16-bit depending on bit-depth
int channel_coeffs[2][2048]; // FIXME: should be 32-bit / 16-bit depending on bit-depth
} WmallDecodeCtx;