diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 02:11:46 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-08-03 02:11:46 +0000 |
commit | a42c89520732d357472c8732cc62ef3cec837316 (patch) | |
tree | 7b29f2f60f81fc3be974d1c0669d8e40a62364e9 /libavcodec/ac3dec.h | |
parent | 42a45a03e79ca235ac4391d7570f5fc9163688e4 (diff) | |
download | ffmpeg-a42c89520732d357472c8732cc62ef3cec837316.tar.gz |
rearrange dimensions of pre_mantissa array
Originally committed as revision 14514 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 91462d9f4f..b661308000 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[6][AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< pre-IDCT mantissas + int pre_mantissa[AC3_MAX_CHANNELS][AC3_MAX_COEFS][6]; ///< pre-IDCT mantissas ///@} ///@defgroup channel channel |