comparison x86/motion_est_mmx.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 8b9fc0c8f1cc
children 3fc4c625b6f3
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
24 24
25 #include "libavutil/x86_cpu.h" 25 #include "libavutil/x86_cpu.h"
26 #include "libavcodec/dsputil.h" 26 #include "libavcodec/dsputil.h"
27 #include "dsputil_mmx.h" 27 #include "dsputil_mmx.h"
28 28
29 DECLARE_ASM_CONST(8, uint64_t, round_tab[3])={ 29 DECLARE_ASM_CONST(8, uint64_t, round_tab)[3]={
30 0x0000000000000000ULL, 30 0x0000000000000000ULL,
31 0x0001000100010001ULL, 31 0x0001000100010001ULL,
32 0x0002000200020002ULL, 32 0x0002000200020002ULL,
33 }; 33 };
34 34