From 58d7efdb2983a338af8e222358814b5fd88a9aec Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Sat, 16 Jul 2011 15:37:05 +0100 Subject: [PATCH] Use LOCAL_ALIGNED in ff_check_alignment() Signed-off-by: Mans Rullgard --- libavcodec/dsputil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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){