diff options
author | Young Han Lee <cpumaker@gmail.com> | 2011-02-16 10:04:07 +0900 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-02-21 16:35:22 -0800 |
commit | e22910b21a6c78b0159f98426b10c204f12bc15a (patch) | |
tree | b373a861841ca55974f2fdb273089728cdd8deff /libavcodec/aac.h | |
parent | 203df50d1013ea59e558d63f3ea69ffae1249124 (diff) | |
download | ffmpeg-e22910b21a6c78b0159f98426b10c204f12bc15a.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.
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]; /** @} */ /** |