[Mplayer-cvslog] CVS: main/liba52 imdct.c,1.1,1.2
Michael Niedermayer
michael at mplayer.dev.hu
Sun Dec 16 00:26:55 CET 2001
Update of /cvsroot/mplayer/main/liba52
In directory mplayer:/var/tmp.root/cvs-serv29111
Modified Files:
imdct.c
Log Message:
some SSE optimizations
Index: imdct.c
===================================================================
RCS file: /cvsroot/mplayer/main/liba52/imdct.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- imdct.c 9 Dec 2001 15:28:44 -0000 1.1
+++ imdct.c 15 Dec 2001 23:26:52 -0000 1.2
@@ -72,7 +72,12 @@
0x03, 0x23, 0x13, 0x33, 0x0b, 0x2b, 0x1b, 0x3b,
0x07, 0x27, 0x17, 0x37, 0x0f, 0x2f, 0x1f, 0x3f};
+#ifdef HAVE_SSE
+// NOTE: SSE needs 16byte alignment or it will segfault
+static complex_t __attribute__((aligned(16))) buf[128];
+#else
static complex_t buf[128];
+#endif
/* Twiddle factor LUT */
static complex_t w_1[1];
@@ -182,7 +187,41 @@
}
/* FFT Merge */
- for (m=0; m < 7; m++) {
+#ifdef HAVE_SSE
+ // Note w[0][0]={1,0}
+ // C Code for the following asm loop
+/* for(i = 0; i < 128; i += 2) {
+ p = 0 + i;
+ q = p + 1;
+ tmp_a_r = buf[p].real;
+ tmp_a_i = buf[p].imag;
+ tmp_b_r = buf[q].real;
+ tmp_b_i = buf[q].imag;
+ buf[p].real = tmp_a_r + tmp_b_r;
+ buf[p].imag = tmp_a_i + tmp_b_i;
+ buf[q].real = tmp_a_r - tmp_b_r;
+ buf[q].imag = tmp_a_i - tmp_b_i;
+ }*/
+ asm volatile(
+ "xorps %%xmm1, %%xmm1 \n\t"
+ "xorps %%xmm2, %%xmm2 \n\t"
+ "movl %0, %%esi \n\t"
+ "1: \n\t"
+ "movlps (%%esi), %%xmm0 \n\t" //buf[p]
+ "movlps 8(%%esi), %%xmm1\n\t" //buf[q]
+ "movhps (%%esi), %%xmm0 \n\t" //buf[p]
+ "movhps 8(%%esi), %%xmm2\n\t" //buf[q]
+ "addps %%xmm1, %%xmm0 \n\t"
+ "subps %%xmm2, %%xmm0 \n\t"
+ "movaps %%xmm0, (%%esi) \n\t"
+ "addl $16, %%esi \n\t"
+ "cmpl %1, %%esi \n\t"
+ " jb 1b \n\t"
+ :: "g" (buf), "r" (buf + 128)
+ : "%esi"
+ );
+
+ for (m=1; m < 7; m++) {
if(m)
two_m = (1 << m);
else
@@ -205,7 +244,32 @@
}
}
}
+#else
+ for (m=0; m < 7; m++) {
+ if(m)
+ two_m = (1 << m);
+ else
+ two_m = 1;
+ two_m_plus_one = (1 << (m+1));
+
+ for(k = 0; k < two_m; k++) {
+ for(i = 0; i < 128; i += two_m_plus_one) {
+ p = k + i;
+ q = p + two_m;
+ tmp_a_r = buf[p].real;
+ tmp_a_i = buf[p].imag;
+ tmp_b_r = buf[q].real * w[m][k].real - buf[q].imag * w[m][k].imag;
+ tmp_b_i = buf[q].imag * w[m][k].real + buf[q].real * w[m][k].imag;
+ buf[p].real = tmp_a_r + tmp_b_r;
+ buf[p].imag = tmp_a_i + tmp_b_i;
+ buf[q].real = tmp_a_r - tmp_b_r;
+ buf[q].imag = tmp_a_i - tmp_b_i;
+ }
+ }
+ }
+#endif
+
/* Post IFFT complex multiply plus IFFT complex conjugate*/
for( i=0; i < 128; i++) {
/* y[n] = z[n] * (xcos1[n] + j * xsin1[n]) ; */
More information about the MPlayer-cvslog
mailing list