diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-11-14 22:05:21 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-11-14 22:05:21 +0000 |
commit | b43ff7e2b0e54ded60bd73325217153b68b86f65 (patch) | |
tree | c1b775c673703b40ad26207f150e10a66a79b687 | |
parent | fc0be57f6625cc1b7b586a088a39a2bd130fe910 (diff) | |
download | ffmpeg-b43ff7e2b0e54ded60bd73325217153b68b86f65.tar.gz |
attribute_used
Originally committed as revision 3682 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/liba52/resample_mmx.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/liba52/resample_mmx.c b/libavcodec/liba52/resample_mmx.c index a4079798f7..315322e3ca 100644 --- a/libavcodec/liba52/resample_mmx.c +++ b/libavcodec/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__((aligned(8))) attribute_used magicF2W= 0x43c0000043c00000LL; +static uint64_t __attribute__((aligned(8))) attribute_used wm1010= 0xFFFF0000FFFF0000LL; +static uint64_t __attribute__((aligned(8))) attribute_used wm0101= 0x0000FFFF0000FFFFLL; +static uint64_t __attribute__((aligned(8))) attribute_used wm1100= 0xFFFFFFFF00000000LL; static int a52_resample_MONO_to_5_MMX(float * _f, int16_t * s16){ int32_t * f = (int32_t *) _f; |