summaryrefslogtreecommitdiffstats
path: root/liba52
diff options
context:
space:
mode:
authormichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-26 19:47:50 +0000
committermichael <michael@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-04-26 19:47:50 +0000
commit813b34f68fd515f40abd5c3bc2923624dc64178e (patch)
treee26c724519763e2e49bd2d1bb8363c389e34e8cd /liba52
parent8e6c665fddff67fe094e0967d136f4a1e7069397 (diff)
downloadmpv-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')
-rw-r--r--liba52/imdct.c6
-rw-r--r--liba52/resample_mmx.c8
2 files changed, 7 insertions, 7 deletions
diff --git a/liba52/imdct.c b/liba52/imdct.c
index 2b3b850269..d5a3eb6b6a 100644
--- a/liba52/imdct.c
+++ b/liba52/imdct.c
@@ -56,7 +56,7 @@ typedef struct complex_s {
static void fft_128p(complex_t *a);
-static const int pm128[128] __attribute__((aligned(16))) =
+static const int pm128[128] attribute_used __attribute__((aligned(16))) =
{
0, 16, 32, 48, 64, 80, 96, 112, 8, 40, 72, 104, 24, 56, 88, 120,
4, 20, 36, 52, 68, 84, 100, 116, 12, 28, 44, 60, 76, 92, 108, 124,
@@ -69,7 +69,7 @@ static const int pm128[128] __attribute__((aligned(16))) =
};
/* 128 point bit-reverse LUT */
-static uint8_t bit_reverse_512[] = {
+static uint8_t attribute_used bit_reverse_512[] = {
0x00, 0x40, 0x20, 0x60, 0x10, 0x50, 0x30, 0x70,
0x08, 0x48, 0x28, 0x68, 0x18, 0x58, 0x38, 0x78,
0x04, 0x44, 0x24, 0x64, 0x14, 0x54, 0x34, 0x74,
@@ -103,7 +103,7 @@ static uint8_t bit_reverse_256[] = {
static complex_t __attribute__((aligned(16))) buf[128];
static float __attribute__((aligned(16))) sseSinCos1c[256];
static float __attribute__((aligned(16))) sseSinCos1d[256];
-static float __attribute__((aligned(16))) ps111_1[4]={1,1,1,-1};
+static float attribute_used __attribute__((aligned(16))) ps111_1[4]={1,1,1,-1};
//static float __attribute__((aligned(16))) sseW0[4];
static float __attribute__((aligned(16))) sseW1[8];
static float __attribute__((aligned(16))) sseW2[16];
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;