diff options
author | Young Han Lee <cpumaker@gmail.com> | 2011-02-16 10:04:07 +0900 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-02-22 02:44:39 +0100 |
commit | 4f84e728dad84a366a2d183da03b7d92cb20fb23 (patch) | |
tree | 35c3d8bc6e5805f5df3669456d9715eec0fd3202 /libavcodec/aac.h | |
parent | ad9b2a41b81cc895da99d0d950b12b7299556ef2 (diff) | |
download | ffmpeg-4f84e728dad84a366a2d183da03b7d92cb20fb23.tar.gz |
aacdec: Reduce the size of buf_mdct.
It was doubled in size for the LTP implementation. This brings it back
down to its original size.
(cherry picked from commit e22910b21a6c78b0159f98426b10c204f12bc15a)
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index a2bf70b001..73bc40843f 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -272,7 +272,7 @@ typedef struct { * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.) * @{ */ - DECLARE_ALIGNED(16, float, buf_mdct)[2048]; + DECLARE_ALIGNED(16, float, buf_mdct)[1024]; /** @} */ /** |