summaryrefslogtreecommitdiffstats
path: root/resample.h
diff options
context:
space:
mode:
Diffstat (limited to 'resample.h')
-rw-r--r--resample.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/resample.h b/resample.h
new file mode 100644
index 0000000..a2905b3
--- /dev/null
+++ b/resample.h
@@ -0,0 +1,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
+
+