aboutsummaryrefslogtreecommitdiff
path: root/fft.h
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2013-06-23 13:34:03 +0000
committerDimitri Sokolyuk <demon@dim13.org>2013-06-23 13:34:03 +0000
commita96e6ccdca73f9c57a9d08dea3d3c36a07ab986f (patch)
tree264ff61483821b5d4bd7cff01f48a0b587a8cbcc /fft.h
parentbdd4b4cd6434f8d2366085795517e2f15061581e (diff)
remove scaling, simplify fft
Diffstat (limited to 'fft.h')
-rw-r--r--fft.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fft.h b/fft.h
index 1e89451..6f0f3bc 100644
--- a/fft.h
+++ b/fft.h
@@ -21,7 +21,7 @@
struct fft;
struct fft *init_fft(int);
-int dofft(struct fft *, int16_t *, double *, double *, int, float);
+int dofft(struct fft *, int16_t *, double *, int);
void del_fft(struct fft *);
#endif