diff options
author | Christophe Gisquet <christophe.gisquet@gmail.com> | 2015-03-14 14:26:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-14 20:36:43 +0100 |
commit | 3814f92fd77f8f09fa6f88333b8d06512b6ced82 (patch) | |
tree | 5b4b5dd038827408aa0bfeaabd3ae5af98795343 /libavcodec/vp8.c | |
parent | 238db7cc56be4c4e71ff98758b7b8ef077ebd4ca (diff) | |
download | ffmpeg-3814f92fd77f8f09fa6f88333b8d06512b6ced82.tar.gz |
lavc: use LOCAL_ALIGNED instead of DECLARE_ALIGNED
The later may yield incorrect code for on-stack variables.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vp8.c')
-rw-r--r-- | libavcodec/vp8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp8.c b/libavcodec/vp8.c index 4b3234714b..8d6cbe1ef9 100644 --- a/libavcodec/vp8.c +++ b/libavcodec/vp8.c @@ -1615,7 +1615,7 @@ void intra_predict(VP8Context *s, VP8ThreadData *td, uint8_t *dst[3], for (x = 0; x < 4; x++) { int copy = 0, linesize = s->linesize; uint8_t *dst = ptr + 4 * x; - DECLARE_ALIGNED(4, uint8_t, copy_dst)[5 * 8]; + LOCAL_ALIGNED(4, uint8_t, copy_dst, [5 * 8]); if ((y == 0 || x == 3) && mb_y == 0) { topright = tr_top; |