summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
authorYoung Han Lee <cpumaker@gmail.com>2011-02-16 10:04:07 +0900
committerAlex Converse <alex.converse@gmail.com>2011-02-21 16:35:22 -0800
commite22910b21a6c78b0159f98426b10c204f12bc15a (patch)
treeb373a861841ca55974f2fdb273089728cdd8deff /libavcodec/aac.h
parent203df50d1013ea59e558d63f3ea69ffae1249124 (diff)
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.h2
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];
/** @} */
/**