[Mplayer-cvslog] CVS: main/liba52 resample_mmx.c,1.15,1.16
Arpi of Ize
arpi at mplayerhq.hu
Thu Nov 7 00:54:55 CET 2002
- Previous message: [Mplayer-cvslog] CVS: main cfgparser.c,1.59,1.60 cpudetect.c,1.20,1.21 mencoder.c,1.183,1.184 mplayer.c,1.609,1.610 sub_cc.c,1.3,1.4 subreader.c,1.75,1.76
- Next message: [Mplayer-cvslog] CVS: main/libao2 ao_arts.c,1.2,1.3 pl_eq.c,1.5,1.6 pl_resample.c,1.8,1.9 pl_surround.c,1.11,1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/mplayer/main/liba52
In directory mail:/var/tmp.root/cvs-serv16361/liba52
Modified Files:
resample_mmx.c
Log Message:
*HUGE* set of compiler warning fixes, unused variables removal
based on patch by Dominik Mierzejewski <dominik at rangers.eu.org>
Index: resample_mmx.c
===================================================================
RCS file: /cvsroot/mplayer/main/liba52/resample_mmx.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- resample_mmx.c 19 Jan 2002 05:12:34 -0000 1.15
+++ resample_mmx.c 6 Nov 2002 23:54:22 -0000 1.16
@@ -13,7 +13,6 @@
static uint64_t __attribute__((aligned(8))) wm1100= 0xFFFFFFFF00000000LL;
static int a52_resample_MONO_to_5_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-512, %%esi \n\t"
@@ -51,7 +50,6 @@
}
static int a52_resample_STEREO_to_2_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
/* benchmark scores are 0.3% better with SSE but we would need to set bias=0 and premultiply it
#ifdef HAVE_SSE
@@ -100,7 +98,6 @@
}
static int a52_resample_3F_to_5_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -156,7 +153,6 @@
}
static int a52_resample_2F_2R_to_4_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -208,7 +204,6 @@
}
static int a52_resample_3F_2R_to_5_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -268,7 +263,6 @@
}
static int a52_resample_MONO_LFE_to_6_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -309,7 +303,6 @@
}
static int a52_resample_STEREO_LFE_to_6_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -348,7 +341,6 @@
}
static int a52_resample_3F_LFE_to_6_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -389,7 +381,6 @@
}
static int a52_resample_2F_2R_LFE_to_6_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
@@ -436,7 +427,6 @@
}
static int a52_resample_3F_2R_LFE_to_6_MMX(float * _f, int16_t * s16){
- int i;
int32_t * f = (int32_t *) _f;
asm volatile(
"movl $-1024, %%esi \n\t"
- Previous message: [Mplayer-cvslog] CVS: main cfgparser.c,1.59,1.60 cpudetect.c,1.20,1.21 mencoder.c,1.183,1.184 mplayer.c,1.609,1.610 sub_cc.c,1.3,1.4 subreader.c,1.75,1.76
- Next message: [Mplayer-cvslog] CVS: main/libao2 ao_arts.c,1.2,1.3 pl_eq.c,1.5,1.6 pl_resample.c,1.8,1.9 pl_surround.c,1.11,1.12
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the MPlayer-cvslog
mailing list