summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-16 15:37:05 +0100
committerMans Rullgard <mans@mansr.com>2011-07-16 19:39:19 +0100
commit58d7efdb2983a338af8e222358814b5fd88a9aec (patch)
tree09884a482e7a3e66d797e83311d9b9e5ebfa7b9d /libavcodec/dsputil.c
parent8342a82680966055af8cbc48e0ad129411df7c44 (diff)
Use LOCAL_ALIGNED in ff_check_alignment()
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c2
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){