[Mplayer-cvslog] CVS: main/liba52 downmix.c,1.8,1.9
Michael Niedermayer
michael at mplayer.dev.hu
Tue Dec 25 18:29:14 CET 2001
Update of /cvsroot/mplayer/main/liba52
In directory mplayer:/var/tmp.root/cvs-serv19649
Modified Files:
downmix.c
Log Message:
mix21to2 & mix21toS in SSE
Index: downmix.c
===================================================================
RCS file: /cvsroot/mplayer/main/liba52/downmix.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- downmix.c 25 Dec 2001 17:19:18 -0000 1.8
+++ downmix.c 25 Dec 2001 17:29:12 -0000 1.9
@@ -454,11 +454,32 @@
int i;
sample_t common;
+#ifdef HAVE_SSE
+ asm volatile(
+ "movlps %2, %%xmm7 \n\t"
+ "shufps $0x00, %%xmm7, %%xmm7 \n\t"
+ "movl $-1024, %%esi \n\t"
+ "1: \n\t"
+ "movaps 1024(%1, %%esi), %%xmm0 \n\t"
+ "addps %%xmm7, %%xmm0 \n\t" //common
+ "movaps (%0, %%esi), %%xmm1 \n\t"
+ "movaps (%1, %%esi), %%xmm2 \n\t"
+ "addps %%xmm0, %%xmm1 \n\t"
+ "addps %%xmm0, %%xmm2 \n\t"
+ "movaps %%xmm1, (%0, %%esi) \n\t"
+ "movaps %%xmm2, (%1, %%esi) \n\t"
+ "addl $16, %%esi \n\t"
+ " jnz 1b \n\t"
+ :: "r" (left+256), "r" (right+256), "m" (bias)
+ : "%esi"
+ );
+#else
for (i = 0; i < 256; i++) {
common = right[i + 256] + bias;
left[i] += common;
right[i] += common;
}
+#endif
}
static void mix21toS (sample_t * samples, sample_t bias)
@@ -466,11 +487,33 @@
int i;
sample_t surround;
+#ifdef HAVE_SSE
+ asm volatile(
+ "movlps %1, %%xmm7 \n\t"
+ "shufps $0x00, %%xmm7, %%xmm7 \n\t"
+ "movl $-1024, %%esi \n\t"
+ "1: \n\t"
+ "movaps 2048(%0, %%esi), %%xmm0 \n\t" // surround
+ "movaps (%0, %%esi), %%xmm1 \n\t"
+ "movaps 1024(%0, %%esi), %%xmm2 \n\t"
+ "addps %%xmm7, %%xmm1 \n\t"
+ "addps %%xmm7, %%xmm2 \n\t"
+ "subps %%xmm0, %%xmm1 \n\t"
+ "addps %%xmm0, %%xmm2 \n\t"
+ "movaps %%xmm1, (%0, %%esi) \n\t"
+ "movaps %%xmm2, 1024(%0, %%esi) \n\t"
+ "addl $16, %%esi \n\t"
+ " jnz 1b \n\t"
+ :: "r" (samples+256), "m" (bias)
+ : "%esi"
+ );
+#else
for (i = 0; i < 256; i++) {
surround = samples[i + 512];
samples[i] += bias - surround;
samples[i + 256] += bias + surround;
}
+#endif
}
static void mix31to2 (sample_t * samples, sample_t bias)
More information about the MPlayer-cvslog
mailing list