Commit 58d7efdb authored by Mans Rullgard's avatar Mans Rullgard

Use LOCAL_ALIGNED in ff_check_alignment()

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent 8342a826
......@@ -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){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment