diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-17 11:58:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-17 14:38:37 +0200 |
commit | 1c14b09caf903f2e776dcd661085db49511bf531 (patch) | |
tree | a307252989c4946246c89204d6e8c1a6ee807fde | |
parent | a2908d49d1e1373264d4605cbc2e62a3ab53710b (diff) | |
download | ffmpeg-1c14b09caf903f2e776dcd661085db49511bf531.tar.gz |
avcodec/atrac3plusdsp: fix on stack alignmentn2.2.15
Fixes fate failure on ARM
(cherry picked from commit 38f67260684aec8a02d87ab4056b1a1fbf964c03)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/atrac3plusdsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/atrac3plusdsp.c b/libavcodec/atrac3plusdsp.c index 3522af1e5a..3c68f74d25 100644 --- a/libavcodec/atrac3plusdsp.c +++ b/libavcodec/atrac3plusdsp.c @@ -599,8 +599,8 @@ void ff_atrac3p_ipqf(FFTContext *dct_ctx, Atrac3pIPQFChannelCtx *hist, const float *in, float *out) { int i, s, sb, t, pos_now, pos_next; - DECLARE_ALIGNED(32, float, idct_in)[ATRAC3P_SUBBANDS]; - DECLARE_ALIGNED(32, float, idct_out)[ATRAC3P_SUBBANDS]; + LOCAL_ALIGNED(32, float, idct_in, [ATRAC3P_SUBBANDS]); + LOCAL_ALIGNED(32, float, idct_out, [ATRAC3P_SUBBANDS]); memset(out, 0, ATRAC3P_FRAME_SAMPLES * sizeof(*out)); |