[PD-cvs] pd/src d_filter.c,1.3.4.2,1.3.4.3

Tim Blechmann timblech at users.sourceforge.net
Sat May 21 15:08:16 CEST 2005


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14484

Modified Files:
      Tag: devel_0_38
	d_filter.c 
Log Message:
updating to 0.39-test2

Index: d_filter.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/d_filter.c,v
retrieving revision 1.3.4.2
retrieving revision 1.3.4.3
diff -C2 -d -r1.3.4.2 -r1.3.4.3
*** d_filter.c	21 Feb 2005 09:35:51 -0000	1.3.4.2
--- d_filter.c	21 May 2005 13:08:13 -0000	1.3.4.3
***************
*** 985,990 ****
          float coefre = *inre2++;
          float coefim = *inim2++;
!         *outre++ = lastre - nextre * coefre + nextim * coefim;
!         *outim++ = lastim - nextre * coefim - nextim * coefre;
          lastre = nextre;
          lastim = nextim;
--- 985,992 ----
          float coefre = *inre2++;
          float coefim = *inim2++;
!             /* transfer function is (A bar) - Z^-1, for the same
!             frequency response as 1 - AZ^-1 from czero_tilde. */
!         *outre++ = lastre - nextre * coefre - nextim * coefim;
!         *outim++ = lastim - nextre * coefim + nextim * coefre;
          lastre = nextre;
          lastim = nextim;





More information about the Pd-cvs mailing list