Mercurial > libavcodec.hg
diff ac3dec.h @ 7549:60b5c1e5a7ee libavcodec
use imdct_half in ac3
author | lorenm |
---|---|
date | Tue, 12 Aug 2008 01:30:24 +0000 |
parents | 97383e012cb9 |
children | f9e4afa46993 |
line wrap: on
line diff
--- a/ac3dec.h Tue Aug 12 00:51:45 2008 +0000 +++ b/ac3dec.h Tue Aug 12 01:30:24 2008 +0000 @@ -165,7 +165,7 @@ 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 ///@}