diff options
author | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-12-09 01:17:09 +0600 |
---|---|---|
committer | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-12-09 01:39:59 +0600 |
commit | 153a8537180b69be073f97380b5f3c08b909bbb2 (patch) | |
tree | 94fa62c02f5c1f29410df0af5f8e8549deea6f92 /libavcodec/wmalosslessdec.c | |
parent | 6d4deecfdf0fe18d1a4b06aac49cabcdb9a25d3c (diff) | |
download | ffmpeg-153a8537180b69be073f97380b5f3c08b909bbb2.tar.gz |
Use int for channel_coeffs instead of int16_t
Diffstat (limited to 'libavcodec/wmalosslessdec.c')
-rw-r--r-- | libavcodec/wmalosslessdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index b108807929..4c6df066b1 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -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; |