Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17129
Modified Files: Tag: desiredata builtins_dsp.c Log Message: removed x_ prefixes
Index: builtins_dsp.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/builtins_dsp.c,v retrieving revision 1.1.2.3 retrieving revision 1.1.2.4 diff -C2 -d -r1.1.2.3 -r1.1.2.4 *** builtins_dsp.c 3 Jan 2007 21:14:31 -0000 1.1.2.3 --- builtins_dsp.c 3 Jan 2007 21:26:39 -0000 1.1.2.4 *************** *** 1,5 **** ! /* Copyright (c) 1997-1999 Miller Puckette. ! * For information on usage and redistribution, and for a DISCLAIMER OF ALL ! * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */
/* arithmetic binops (+, -, *, /). --- 1,7 ---- ! /* Copyright (c) 2007 Mathieu Bouchard ! Copyright (c) 1997-1999 Miller Puckette. ! For information on usage and redistribution, ! and for a DISCLAIMER OF ALL WARRANTIES, [...6528 lines suppressed...] return (x); --- 6586,6590 ---- t_noise *x = (t_noise *)pd_new(noise_class); static int init = 307; ! x->val = (init *= 1319); outlet_new(x, gensym("signal")); return (x); *************** *** 6607,6611 **** static void noise_dsp(t_noise *x, t_signal **sp) { ! dsp_add(noise_perform, 3, sp[0]->s_vec, &x->x_val, sp[0]->s_n); }
--- 6609,6613 ---- static void noise_dsp(t_noise *x, t_signal **sp) { ! dsp_add(noise_perform, 3, sp[0]->s_vec, &x->val, sp[0]->s_n); }