#include "m_pd.h"
t_int *downsampling_perform_0(t_int *w)
{ … }
t_int *upsampling_perform_0(t_int *w)
{ … }
t_int *upsampling_perform_hold(t_int *w)
{ … }
t_int *upsampling_perform_linear(t_int *w)
{ … }
void resample_init(t_resample *x)
{ … }
void resample_free(t_resample *x)
{ … }
void resample_dsp(t_resample *x,
t_sample* in, int insize,
t_sample* out, int outsize,
int method)
{ … }
void resamplefrom_dsp(t_resample *x,
t_sample *in,
int insize, int outsize, int method)
{ … }
void resampleto_dsp(t_resample *x,
t_sample *out,
int insize, int outsize, int method)
{ … }