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)
This commit is contained in:
Young Han Lee
2011-02-16 10:04:07 +09:00
committed by Michael Niedermayer
parent ad9b2a41b8
commit 4f84e728da
2 changed files with 12 additions and 9 deletions

View File

@ -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];
/** @} */
/**