Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20676
Modified Files: Tag: desiredata d_ctl.c d_delay.c kernel.c Log Message: removed unused vars
Index: d_ctl.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/d_ctl.c,v retrieving revision 1.3.4.12.2.3 retrieving revision 1.3.4.12.2.3.2.1 diff -C2 -d -r1.3.4.12.2.3 -r1.3.4.12.2.3.2.1 *** d_ctl.c 30 Nov 2005 13:36:57 -0000 1.3.4.12.2.3 --- d_ctl.c 20 Dec 2006 08:25:53 -0000 1.3.4.12.2.3.2.1 *************** *** 202,207 **** if (x->x_ticksleft) { ! float f = x->x_value; ! line_tilde_slope(out, n, &x->x_value, x->x_slopes, &x->x_slopestep); x->x_value += x->x_biginc; x->x_ticksleft--; --- 202,206 ---- if (x->x_ticksleft) { ! line_tilde_slope(out, n, &x->x_value, x->x_slopes, &x->x_slopestep); x->x_value += x->x_biginc; x->x_ticksleft--; *************** *** 244,249 **** if (x->x_ticksleft) { ! float f = x->x_value; ! line_tilde_slope_simd(out, n, &x->x_value, x->x_slopes, &x->x_slopestep); x->x_value += x->x_biginc; x->x_ticksleft--; --- 243,247 ---- if (x->x_ticksleft) { ! line_tilde_slope_simd(out, n, &x->x_value, x->x_slopes, &x->x_slopestep); x->x_value += x->x_biginc; x->x_ticksleft--; *************** *** 357,361 **** double inc = x->x_inc; double msecpersamp = x->x_msecpersamp; - double samppermsec = x->x_samppermsec; double timenow = clock_gettimesince(x->x_referencetime) - n * msecpersamp; t_vseg *s = x->x_list; --- 355,358 ----
Index: kernel.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/kernel.c,v retrieving revision 1.1.2.4 retrieving revision 1.1.2.5 diff -C2 -d -r1.1.2.4 -r1.1.2.5 *** kernel.c 13 Dec 2006 23:48:12 -0000 1.1.2.4 --- kernel.c 20 Dec 2006 08:25:53 -0000 1.1.2.5 *************** *** 666,670 ****
static void inlet_list(t_inlet *x, t_symbol *s, int argc, t_atom *argv) { - t_atom at; if (x->i_symfrom == &s_list || x->i_symfrom == &s_float || x->i_symfrom == &s_symbol || x->i_symfrom == &s_pointer) --- 666,669 ----
Index: d_delay.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/d_delay.c,v retrieving revision 1.2.4.6.2.2 retrieving revision 1.2.4.6.2.2.2.1 diff -C2 -d -r1.2.4.6.2.2 -r1.2.4.6.2.2.2.1 *** d_delay.c 30 Nov 2005 13:36:57 -0000 1.2.4.6.2.2 --- d_delay.c 20 Dec 2006 08:25:53 -0000 1.2.4.6.2.2.2.1 *************** *** 12,16 ****
#define DEFDELVS 64 /* LATER get this from canvas at DSP time */ - static int delread_zero = 0; /* four bytes of zero for delread~, vd~ */
/* ----------------------------- delwrite~ ----------------------------- */ --- 12,15 ---- *************** *** 236,240 **** static void sigdelread_float(t_sigdelread *x, t_float f) { - int samps; t_sigdelwrite *delwriter = (t_sigdelwrite *)pd_findbyclass(x->x_sym, sigdelwrite_class); --- 235,238 ---- *************** *** 242,246 **** if (delwriter) { - int delsize = delwriter->x_cspace.c_n; x->x_delsamps = (int)(0.5 + x->x_sr * x->x_deltime) + x->x_n - x->x_zerodel; --- 240,243 ----