pure-data/src/d_resample.c

/* 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.  */


#include "m_pd.h"

/* --------------------- up/down-sampling --------------------- */
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)
{}

/* ----------------------- public -------------------------------- */

/* utils */

void resample_init(t_resample *x)
{}

void resample_free(t_resample *x)
{}


/* dsp-adding */

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)
{}