aboutsummaryrefslogtreecommitdiff
path: root/fft.c
diff options
context:
space:
mode:
Diffstat (limited to 'fft.c')
-rw-r--r--fft.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fft.c b/fft.c
index 12ef65c..c0827c5 100644
--- a/fft.c
+++ b/fft.c
@@ -66,7 +66,7 @@ init_fft(size_t n)
}
int
-dofft(struct fft *p, int16_t *data, double *out, int odd)
+exec_fft(struct fft *p, int16_t *data, double *out, int odd)
{
int i;
@@ -84,7 +84,7 @@ dofft(struct fft *p, int16_t *data, double *out, int odd)
}
void
-del_fft(struct fft *p)
+free_fft(struct fft *p)
{
fftw_free(p->in);
fftw_free(p->out);