diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 01:30:24 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-08-12 01:30:24 +0000 |
commit | 916d5d6c325fe1501742b2d35da395201328849d (patch) | |
tree | 107ceaa75d25ac453eb591e8bdb09d194165d5eb /libavcodec/ac3dec.h | |
parent | 862b98d42c3a8bfdc5e8b5df017f329c9a022f3b (diff) | |
download | ffmpeg-916d5d6c325fe1501742b2d35da395201328849d.tar.gz |
use imdct_half in ac3
Originally committed as revision 14705 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 bf46678e87..0158c5cb37 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -165,7 +165,7 @@ typedef struct { DECLARE_ALIGNED_16(float, transform_coeffs[AC3_MAX_CHANNELS][AC3_MAX_COEFS]); ///< transform coefficients DECLARE_ALIGNED_16(float, delay[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< delay - added to the next block DECLARE_ALIGNED_16(float, window[AC3_BLOCK_SIZE]); ///< window coefficients - DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE*2]); ///< temporary storage for output before windowing + DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE]); ///< temporary storage for output before windowing DECLARE_ALIGNED_16(float, output[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< output after imdct transform and windowing DECLARE_ALIGNED_16(short, int_output[AC3_MAX_CHANNELS-1][AC3_BLOCK_SIZE]); ///< final 16-bit integer output ///@} |