diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-16 15:37:05 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-16 19:39:19 +0100 |
commit | 58d7efdb2983a338af8e222358814b5fd88a9aec (patch) | |
tree | 09884a482e7a3e66d797e83311d9b9e5ebfa7b9d | |
parent | 8342a82680966055af8cbc48e0ad129411df7c44 (diff) | |
download | ffmpeg-58d7efdb2983a338af8e222358814b5fd88a9aec.tar.gz |
Use LOCAL_ALIGNED in ff_check_alignment()
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 4f17b435d1..8bb7dc1181 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2844,7 +2844,7 @@ av_cold void dsputil_static_init(void) int ff_check_alignment(void){ static int did_fail=0; - DECLARE_ALIGNED(16, int, aligned); + LOCAL_ALIGNED_16(int, aligned); if((intptr_t)&aligned & 15){ if(!did_fail){ |