[Mplayer-cvslog] CVS: main/liba52 imdct.c,1.20,1.21 imdct_3dnow.h,1.2,1.3
Michael Niedermayer CVS
michael at mplayerhq.hu
Sat Nov 23 11:58:16 CET 2002
Update of /cvsroot/mplayer/main/liba52
In directory mail:/var/tmp.root/cvs-serv22743/liba52
Modified Files:
imdct.c imdct_3dnow.h
Log Message:
warning patch by (Dominik Mierzejewski <dominik at rangers dot eu dot org>)
Index: imdct.c
===================================================================
RCS file: /cvsroot/mplayer/main/liba52/imdct.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- imdct.c 3 Feb 2002 10:27:26 -0000 1.20
+++ imdct.c 23 Nov 2002 10:58:12 -0000 1.21
@@ -193,16 +193,19 @@
void
imdct_do_512(sample_t data[],sample_t delay[], sample_t bias)
{
- int i,k;
+ int i;
+#ifndef USE_AC3_C
+ int k;
int p,q;
int m;
int two_m;
int two_m_plus_one;
- sample_t tmp_a_i;
- sample_t tmp_a_r;
sample_t tmp_b_i;
sample_t tmp_b_r;
+#endif
+ sample_t tmp_a_i;
+ sample_t tmp_a_r;
sample_t *data_ptr;
sample_t *delay_ptr;
@@ -401,16 +404,16 @@
void
imdct_do_512_sse(sample_t data[],sample_t delay[], sample_t bias)
{
- int i,k;
- int p,q;
+/* int i,k;
+ int p,q;*/
int m;
int two_m;
int two_m_plus_one;
- sample_t tmp_a_i;
+/* sample_t tmp_a_i;
sample_t tmp_a_r;
sample_t tmp_b_i;
- sample_t tmp_b_r;
+ sample_t tmp_b_r;*/
sample_t *data_ptr;
sample_t *delay_ptr;
Index: imdct_3dnow.h
===================================================================
RCS file: /cvsroot/mplayer/main/liba52/imdct_3dnow.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- imdct_3dnow.h 18 Nov 2002 10:12:03 -0000 1.2
+++ imdct_3dnow.h 23 Nov 2002 10:58:12 -0000 1.3
@@ -322,7 +322,8 @@
#endif
(sample_t data[],sample_t delay[], sample_t bias)
{
- int i,k;
+ int i;
+/* int k;
int p,q;
int m;
int two_m;
@@ -331,7 +332,7 @@
sample_t tmp_a_i;
sample_t tmp_a_r;
sample_t tmp_b_i;
- sample_t tmp_b_r;
+ sample_t tmp_b_r;*/
sample_t *data_ptr;
sample_t *delay_ptr;
More information about the MPlayer-cvslog
mailing list