Update of /cvsroot/pure-data/externals/tbext/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10642/source
Modified Files: fftgrrev.cpp Log Message:
Index: fftgrrev.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/tbext/source/fftgrrev.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** fftgrrev.cpp 20 Sep 2003 00:02:58 -0000 1.1 --- fftgrrev.cpp 7 Sep 2004 09:11:46 -0000 1.2 *************** *** 69,73 **** t_int bs; //blocksize t_int bs1; //bs+1 - t_int counter;
t_sample * data; //array with data --- 69,72 ---- *************** *** 75,80 **** t_sample * dend; //1 element after the last element
- t_sample * ins; - t_sample * outs;
bool reverse; --- 74,77 ---- *************** *** 86,90 ****
fftgrrev::fftgrrev(int arg): ! grains(1),offset(0),counter(1) { bs=arg/2; --- 83,87 ----
fftgrrev::fftgrrev(int arg): ! grains(1),offset(0) { bs=arg/2; *************** *** 107,113 **** void fftgrrev::m_signal(int n, t_float * const *in, t_float *const *out) { ! ins = in[0]; ! outs = out[0]; !
if (offset>0) --- 104,109 ---- void fftgrrev::m_signal(int n, t_float * const *in, t_float *const *out) { ! t_sample * ins = in[0]; ! t_sample * outs = out[0];
if (offset>0) *************** *** 127,131 **** //grains
! counter=1;
while (counter!=grains) --- 123,127 ---- //grains
! int counter=1;
while (counter!=grains) *************** *** 145,149 **** { offset=-o; - post("offset %i",o); } else --- 141,144 ----