[PD-cvs] externals/fftw fftw~.c, 1.1, 1.2 ifftw~.c, 1.1, 1.2 rfftw~.c, 1.1, 1.2 rifftw~.c, 1.1, 1.2

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Mon Sep 25 11:03:57 CEST 2006


Update of /cvsroot/pure-data/externals/fftw
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30624

Modified Files:
	fftw~.c ifftw~.c rfftw~.c rifftw~.c 
Log Message:
indentation for better readability


Index: ifftw~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/fftw/ifftw~.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ifftw~.c	20 Sep 2006 11:22:29 -0000	1.1
--- ifftw~.c	25 Sep 2006 09:03:55 -0000	1.2
***************
*** 54,59 ****
      x->dim.is=1;
      x->dim.os=1;
!     x->plan = fftwf_plan_guru_split_dft(1, &(x->dim), 0, NULL, in2, 
! 					in1, out2, out1, FFTW_ESTIMATE);
      dsp_add(sigifftw_perform, 1, &x->plan);
  }
--- 54,61 ----
      x->dim.is=1;
      x->dim.os=1;
!     x->plan = fftwf_plan_guru_split_dft(1, &(x->dim), 0, 
!                                         NULL, 
!                                         in2, in1, out2, out1, 
!                                         FFTW_ESTIMATE);
      dsp_add(sigifftw_perform, 1, &x->plan);
  }

Index: rifftw~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/fftw/rifftw~.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** rifftw~.c	20 Sep 2006 11:22:29 -0000	1.1
--- rifftw~.c	25 Sep 2006 09:03:55 -0000	1.2
***************
*** 40,44 ****
    fftw_siginvert((t_sample *)w[2],w[3]); 
    fftwf_execute(*(fftwf_plan*)w[1]);
-     
    return (w+4);
  }
--- 40,43 ----
***************
*** 62,67 ****
        x->dim.is=1;
        x->dim.os=1;
!       x->plan = fftwf_plan_guru_split_dft_c2r(1, &(x->dim), 0, NULL, 
!                                               in1, in2, out, FFTW_ESTIMATE | FFTW_PRESERVE_INPUT);
        dsp_add_zero(in1+ n/2, n/2);
        dsp_add(sigrifftw_perform,3,&x->plan,in2,n2);
--- 61,68 ----
        x->dim.is=1;
        x->dim.os=1;
!       x->plan = fftwf_plan_guru_split_dft_c2r(1, &(x->dim), 0, 
!                                               NULL, 
!                                               in1, in2, out, 
!                                               FFTW_ESTIMATE | FFTW_PRESERVE_INPUT);
        dsp_add_zero(in1+ n/2, n/2);
        dsp_add(sigrifftw_perform,3,&x->plan,in2,n2);

Index: rfftw~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/fftw/rfftw~.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** rfftw~.c	20 Sep 2006 11:22:29 -0000	1.1
--- rfftw~.c	25 Sep 2006 09:03:55 -0000	1.2
***************
*** 61,66 ****
        x->dim.is=1;
        x->dim.os=1;
!       x->plan = fftwf_plan_guru_split_dft_r2c(1, &(x->dim), 0, NULL, 
!                                               in, out1, out2, FFTW_ESTIMATE | FFTW_PRESERVE_INPUT);
        dsp_add(sigrfftw_perform,3,&x->plan,out2+1,n2-1);
      }
--- 61,68 ----
        x->dim.is=1;
        x->dim.os=1;
!       x->plan = fftwf_plan_guru_split_dft_r2c(1, &(x->dim), 0, 
!                                               NULL,
!                                               in, out1, out2,
!                                               FFTW_ESTIMATE | FFTW_PRESERVE_INPUT);
        dsp_add(sigrfftw_perform,3,&x->plan,out2+1,n2-1);
      }

Index: fftw~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/fftw/fftw~.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fftw~.c	20 Sep 2006 11:22:29 -0000	1.1
--- fftw~.c	25 Sep 2006 09:03:55 -0000	1.2
***************
*** 54,60 ****
    x->dim.is=1;
    x->dim.os=1;
!   x->plan = fftwf_plan_guru_split_dft(1, &(x->dim), 0, NULL, 
!                                      in1, in2, out1, out2, 
!                                      FFTW_ESTIMATE);
    dsp_add(sigfftw_perform, 1, &x->plan);
  }
--- 54,61 ----
    x->dim.is=1;
    x->dim.os=1;
!   x->plan = fftwf_plan_guru_split_dft(1, &(x->dim), 0, 
!                                       NULL, 
!                                       in1, in2, out1, out2, 
!                                       FFTW_ESTIMATE);
    dsp_add(sigfftw_perform, 1, &x->plan);
  }





More information about the Pd-cvs mailing list