From e22910b21a6c78b0159f98426b10c204f12bc15a Mon Sep 17 00:00:00 2001 From: Young Han Lee Date: Wed, 16 Feb 2011 10:04:07 +0900 Subject: 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. --- libavcodec/aac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/aac.h') 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]; /** @} */ /** -- cgit v1.2.3