summaryrefslogtreecommitdiffstats
path: root/resample.h
blob: a2905b3dce7fabd2657efc76a9d4ee6b81d28ba5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef fooresamplehfoo
#define fooresamplehfoo

struct resample_state;

void resample_init(struct resample_state *s);
void resample_done(struct resample_state *s);
void resample_get(struct resample_state *s, float* sp, int *sl, float *dp, int *dl, int sfreq, int dfreq);

#endif