aboutsummaryrefslogtreecommitdiff
path: root/fft.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-02 19:10:11 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-02 19:10:11 +0000
commitdacaf798037d45118f87e57cf21f21ddd8c3e7c1 (patch)
treed677b0d62f9bed234da434871f58c3e8bf0f92e7 /fft.c
parent163caf91829b7ebf2f314c5fdd98b328fa629c4c (diff)
refactor names
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);