summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAnthony Blake <anthonix@me.com>2012-10-20 18:10:52 +1300
committerAnthony Blake <anthonix@me.com>2012-10-20 18:10:52 +1300
commit9ea5b92ff89e5caf9f2b364459b775aa6dbf4c24 (patch)
tree71784f208b58cf9233396cc18366638210f03c5f /tests
parent45b8e7c0021c1b8acbdb2b1ae9ace98202b04da7 (diff)
downloadffts-9ea5b92ff89e5caf9f2b364459b775aa6dbf4c24.zip
ffts-9ea5b92ff89e5caf9f2b364459b775aa6dbf4c24.tar.gz
Made ffts_plan_t private -- transforms now have to use ffts_execute()
Diffstat (limited to 'tests')
-rw-r--r--tests/test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test.c b/tests/test.c
index fd0fa15..324238c 100644
--- a/tests/test.c
+++ b/tests/test.c
@@ -59,8 +59,8 @@ main(int argc, char *argv[]) {
}
ffts_plan_t *p = ffts_init(i, sign);
if(p) {
-
- p->transform(p, input, output);
+
+ ffts_execute(p, input, output);
for(i=0;i<n;i++) printf("%d %f %f\n", i, output[2*i], output[2*i+1]);
ffts_free(p);
OpenPOWER on IntegriCloud