From 1baf1d957e195290cfd59089767ca63a547a9917 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 7 Apr 2004 14:32:29 +0000 Subject: This commit was generated by cvs2svn to compensate for changes in r1560, which included commits to RCS files with non-trunk default branches. svn path=/trunk/externals/mjlib/; revision=1561 --- convolve~.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 convolve~.h (limited to 'convolve~.h') diff --git a/convolve~.h b/convolve~.h new file mode 100644 index 0000000..a1a306c --- /dev/null +++ b/convolve~.h @@ -0,0 +1,23 @@ +/* declarations for the pin~ object */ + +typedef struct _convolve_tilde +{ + t_object x_obj; + float p_prob; + float p_ticktime; + int p_outchannel; + t_clock* p_clock; + long p_numticks; + int p_normalized_prob; + float x_f; +} t_convolve_tilde; + +t_int *convolve_tilde_perform(t_int *w); +static void convolve_tilde_dsp(t_convolve_tilde *x, t_signal **sp); +static void convolve_tilde_free(t_convolve_tilde *x); +static void *convolve_tilde_new(t_floatarg prob , t_floatarg tick); +static void convolve_tilde_float(t_convolve_tilde* x, t_float n); +static void convolve_tilde_ticktime( t_convolve_tilde* x, t_float tick ); +static void convolve_tilde_prob( t_convolve_tilde* x, t_float prob ); +static void convolve_tilde_tick(t_convolve_tilde *x); + \ No newline at end of file -- cgit v1.2.1