]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/i386/motion_est_mmx.c
Correction of typo in aac_ac3_parser
[ffmpeg] / libavcodec / i386 / motion_est_mmx.c
index 3c2239387124955db624782672380e700461aa07..888d891d94062931faaa0d9d256e7b7a0d9e43a9 100644 (file)
 #include "dsputil.h"
 #include "x86_cpu.h"
 
-static const __attribute__ ((aligned(8))) uint64_t round_tab[3]={
+DECLARE_ASM_CONST(8, uint64_t, round_tab[3])={
 0x0000000000000000ULL,
 0x0001000100010001ULL,
 0x0002000200020002ULL,
 };
 
-static attribute_used __attribute__ ((aligned(8))) uint64_t bone= 0x0101010101010101LL;
+DECLARE_ASM_CONST(8, uint64_t, bone)= 0x0101010101010101LL;
 
 static inline void sad8_1_mmx(uint8_t *blk1, uint8_t *blk2, int stride, int h)
 {