[MPlayer-cvslog] CVS: main/libaf af_equalizer.c,1.5,1.6

Reynaldo H. Verdejo CVS syncmail at mplayerhq.hu
Thu Dec 1 04:14:23 CET 2005


CVS change done by Reynaldo H. Verdejo CVS

Update of /cvsroot/mplayer/main/libaf
In directory mail:/var2/tmp/cvs-serv29261/libaf

Modified Files:
	af_equalizer.c 
Log Message:
wrong output level calculation on af_equalizer leaded to low level output even with all octaves at 0db (default), patch by Corey Hickey bugfood-ml AT -fatooh/org-

Index: af_equalizer.c
===================================================================
RCS file: /cvsroot/mplayer/main/libaf/af_equalizer.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- af_equalizer.c	27 Dec 2004 17:30:13 -0000	1.5
+++ af_equalizer.c	1 Dec 2005 03:14:21 -0000	1.6
@@ -190,7 +190,7 @@
 	wq[0] = w;
       }
       // Calculate output 
-      *out=yt/(4.0*10.0);
+      *out=yt;
       out+=nch;
     }
   }




More information about the MPlayer-cvslog mailing list