diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2012-12-27 22:33:51 +0100 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2013-07-17 11:02:47 +0300 |
commit | b6293e2798afab60596a87010b6163fcb4ca3086 (patch) | |
tree | 256cc1560b131fd9d125ef8858f25d91d58d78ad /libavcodec/ac3dec.h | |
parent | 50612484e058e8b241f0528584d64d9d2ccebf12 (diff) | |
download | ffmpeg-b6293e2798afab60596a87010b6163fcb4ca3086.tar.gz |
fmtconvert: Explicitly use int32_t instead of int
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index 6707fd2643..06b8544c82 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -203,7 +203,7 @@ typedef struct AC3DecodeContext { float *dlyptr[AC3_MAX_CHANNELS]; ///@name Aligned arrays - DECLARE_ALIGNED(16, int, fixed_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< fixed-point transform coefficients + DECLARE_ALIGNED(16, int32_t, fixed_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< fixed-point transform coefficients DECLARE_ALIGNED(32, float, transform_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< transform coefficients DECLARE_ALIGNED(32, float, delay)[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]; ///< delay - added to the next block DECLARE_ALIGNED(32, float, window)[AC3_BLOCK_SIZE]; ///< window coefficients |