diff options
author | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-04-26 19:47:50 +0000 |
---|---|---|
committer | michael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2004-04-26 19:47:50 +0000 |
commit | 813b34f68fd515f40abd5c3bc2923624dc64178e (patch) | |
tree | e26c724519763e2e49bd2d1bb8363c389e34e8cd /liba52/resample_mmx.c | |
parent | 8e6c665fddff67fe094e0967d136f4a1e7069397 (diff) | |
download | mpv-813b34f68fd515f40abd5c3bc2923624dc64178e.tar.bz2 mpv-813b34f68fd515f40abd5c3bc2923624dc64178e.tar.xz |
attribute_used patch by (VMiklos <mamajom at axelero dot hu>)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@12304 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'liba52/resample_mmx.c')
-rw-r--r-- | liba52/resample_mmx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/liba52/resample_mmx.c b/liba52/resample_mmx.c index a4079798f7..6f45d88ea7 100644 --- a/liba52/resample_mmx.c +++ b/liba52/resample_mmx.c @@ -7,10 +7,10 @@ and it would mean (C / MMX2 / MMX / 3DNOW) versions */ -static uint64_t __attribute__((aligned(8))) magicF2W= 0x43c0000043c00000LL; -static uint64_t __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000LL; -static uint64_t __attribute__((aligned(8))) wm0101= 0x0000FFFF0000FFFFLL; -static uint64_t __attribute__((aligned(8))) wm1100= 0xFFFFFFFF00000000LL; +static uint64_t attribute_used __attribute__((aligned(8))) magicF2W= 0x43c0000043c00000LL; +static uint64_t attribute_used __attribute__((aligned(8))) wm1010= 0xFFFF0000FFFF0000LL; +static uint64_t attribute_used __attribute__((aligned(8))) wm0101= 0x0000FFFF0000FFFFLL; +static uint64_t attribute_used __attribute__((aligned(8))) wm1100= 0xFFFFFFFF00000000LL; static int a52_resample_MONO_to_5_MMX(float * _f, int16_t * s16){ int32_t * f = (int32_t *) _f; |