diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 02:16:21 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 02:16:21 +0000 |
commit | a52d8c6b320aceec28fe4767748303554a2f60d2 (patch) | |
tree | e4d843c37405da3366383ab9049ab509322fc920 /libavcodec/ac3dec.h | |
parent | a42c89520732d357472c8732cc62ef3cec837316 (diff) | |
download | ffmpeg-a52d8c6b320aceec28fe4767748303554a2f60d2.tar.gz |
use MAX_BLOCKS for array size instead of 6
Originally committed as revision 14515 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 b661308000..aaa28def6b 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -91,7 +91,7 @@ typedef struct { ///@defgroup aht adaptive hybrid transform int channel_uses_aht[AC3_MAX_CHANNELS]; ///< channel AHT in use (chahtinu) - int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][6]; ///< pre-IDCT mantissas + int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][MAX_BLOCKS]; ///< pre-IDCT mantissas ///@} ///@defgroup channel channel |