diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2008-06-07 22:30:47 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2008-06-07 22:30:47 +0000 |
commit | da04be10a2814db1bfdd0adafaf8d909e2f48cbe (patch) | |
tree | a712f9121c203d01d0434a839cb9444b6bcbe6ff /libavcodec/ac3dec.h | |
parent | 54624396fc4ef42bfa7918dc573727b0ae17fcc5 (diff) | |
download | ffmpeg-da04be10a2814db1bfdd0adafaf8d909e2f48cbe.tar.gz |
store exp_strategy for all blocks in decode context
Originally committed as revision 13704 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 f4986f6a9e..086ebb5fe1 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -102,7 +102,7 @@ typedef struct { ///@defgroup exponents exponents int num_exp_groups[AC3_MAX_CHANNELS]; ///< Number of exponent groups (nexpgrp) int8_t dexps[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///< decoded exponents - int exp_strategy[AC3_MAX_CHANNELS]; ///< exponent strategies (expstr) + int exp_strategy[MAX_BLOCKS][AC3_MAX_CHANNELS]; ///< exponent strategies (expstr) ///@} ///@defgroup bitalloc bit allocation |