#include "m_pd.h" #define MIN(a,b) (((a)<(b))?(a):(b)) #define MAX(a,b) (((a)>(b))?(a):(b)) static t_class *tab_upsample_class; typedef struct _tab_upsample { t_object x_obj; t_symbol *x_arrayname_src; t_symbol *x_arrayname_dst; int factor, offset; t_outlet *b_out; } t_tab_upsample; void *tab_upsample_new(t_symbol *s_src,t_symbol *s_dst, t_float factor) { t_tab_upsample *x = (t_tab_upsample *)pd_new(tab_upsample_class); x->x_arrayname_src = s_src; x->x_arrayname_dst = s_dst; x->factor = MAX(1, factor); x->offset = 0; x->b_out = outlet_new(&x->x_obj, &s_bang); return (void *)x; } void tab_upsample_compute(t_tab_upsample *x) { t_garray *a_src, *a_dst; int npoints_src, npoints_dst; t_word *vec_src, *vec_dst; int nb_max, i, index_dst; x->factor = MAX(x->factor, 1); if (!(a_src = (t_garray *)pd_findbyclass(x->x_arrayname_src, garray_class))) pd_error(x, "%s: no such array", x->x_arrayname_src->s_name); else if (!garray_getfloatwords(a_src, &npoints_src, &vec_src)) pd_error(x, "%s: bad template for tab_upsample", x->x_arrayname_src->s_name); else if (!(a_dst = (t_garray *)pd_findbyclass(x->x_arrayname_dst, garray_class))) pd_error(x, "%s: no such array", x->x_arrayname_dst->s_name); else if (!garray_getfloatwords(a_dst, &npoints_dst, &vec_dst)) pd_error(x, "%s: bad template for tab_upsample", x->x_arrayname_dst->s_name); else { nb_max = MIN(npoints_src, 1+(npoints_dst - x->offset - 1)/x->factor); // post("nb_max = %d",nb_max); index_dst = x->offset; for (i=0; ifactor; } garray_redraw(a_dst); } outlet_bang(x->b_out); } void tab_upsample_bang(t_tab_upsample *x) { x->offset = 0; tab_upsample_compute(x) ; } void tab_upsample_float(t_tab_upsample *x, t_float offset) { x->offset = offset; tab_upsample_compute(x) ; } void tab_upsample_src(t_tab_upsample *x, t_symbol *s_src) { x->x_arrayname_src = s_src; } void tab_upsample_dst(t_tab_upsample *x, t_symbol *s_dst) { x->x_arrayname_dst = s_dst; } void tab_upsample_factor(t_tab_upsample *x, t_float factor) { x->factor = MAX(1, factor); } void tab_upsample_setup(void) { tab_upsample_class = class_new(gensym("tab_upsample"), (t_newmethod)tab_upsample_new, 0, sizeof(t_tab_upsample), CLASS_DEFAULT, A_DEFSYM, A_DEFSYM, A_DEFFLOAT, 0); class_addbang(tab_upsample_class, tab_upsample_bang); class_addmethod(tab_upsample_class, (t_method)tab_upsample_src, gensym("src"), A_DEFSYM, 0); class_addmethod(tab_upsample_class, (t_method)tab_upsample_dst, gensym("dst"), A_DEFSYM, 0); class_addmethod(tab_upsample_class, (t_method)tab_upsample_factor, gensym("factor"), A_DEFFLOAT, 0); class_addfloat(tab_upsample_class, (t_method)tab_upsample_float); }