aboutsummaryrefslogtreecommitdiff
path: root/fft.h
diff options
context:
space:
mode:
Diffstat (limited to 'fft.h')
-rw-r--r--fft.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/fft.h b/fft.h
index eeeaffd..e933e35 100644
--- a/fft.h
+++ b/fft.h
@@ -18,13 +18,12 @@
#ifndef __FFT_H
#define __FFT_H
-struct fft;
enum fft_chan { FFT_LEFT, FFT_RIGHT };
__BEGIN_DECLS
-struct fft *init_fft(size_t);
-int exec_fft(struct fft *, int16_t *, double *, enum fft_chan);
-void free_fft(struct fft *);
+int init_fft(size_t);
+int exec_fft(int16_t *, double *, enum fft_chan);
+void free_fft(void);
__END_DECLS
#endif