[FFmpeg-cvslog] Use int for channel_coeffs instead of int16_t
Mashiat Sarker Shakkhar
git at videolan.org
Sat Dec 24 02:03:02 CET 2011
ffmpeg | branch: master | Mashiat Sarker Shakkhar <shahriman_ams at yahoo.com> | Fri Dec 9 01:17:09 2011 +0600| [153a8537180b69be073f97380b5f3c08b909bbb2] | committer: Mashiat Sarker Shakkhar
Use int for channel_coeffs instead of int16_t
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=153a8537180b69be073f97380b5f3c08b909bbb2
---
libavcodec/wmalosslessdec.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index b108807..4c6df06 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;
More information about the ffmpeg-cvslog
mailing list