summaryrefslogtreecommitdiff
path: root/sms/OOURA.h
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-18 17:32:05 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-18 17:32:05 +0100
commit30755b92afeae5a5a32860b4f4297180f6d3398d (patch)
treec9332a65adc6a27016678fccee6ce979d87fed07 /sms/OOURA.h
parent58a7c36c5a219d8306f276db157097ac30782079 (diff)
downloadsimpl-30755b92afeae5a5a32860b4f4297180f6d3398d.tar.gz
simpl-30755b92afeae5a5a32860b4f4297180f6d3398d.tar.bz2
simpl-30755b92afeae5a5a32860b4f4297180f6d3398d.zip
Moved project over to Git
Diffstat (limited to 'sms/OOURA.h')
-rw-r--r--sms/OOURA.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/sms/OOURA.h b/sms/OOURA.h
new file mode 100644
index 0000000..a1087cd
--- /dev/null
+++ b/sms/OOURA.h
@@ -0,0 +1,26 @@
+#ifndef _OOURA_H
+#define _OOURA_H
+
+#ifdef DOUBLE_PRECISION
+#define sfloat double
+#else
+#define sfloat float
+#endif
+
+#define NMAX 8192
+#define NMAXSQRT 64
+
+void rdft(int n, int isgn, sfloat *a, int *ip, sfloat *w);
+
+void makewt(int nw, int *ip, sfloat *w);
+void makect(int nc, int *ip, sfloat *c);
+void bitrv2(int n, int *ip, sfloat *a);
+void cftfsub(int n, sfloat *a, sfloat *w);
+void cftbsub(int n, sfloat *a, sfloat *w);
+void rftfsub(int n, sfloat *a, int nc, sfloat *c);
+void rftbsub(int n, sfloat *a, int nc, sfloat *c);
+
+void cft1st(int n, sfloat *a, sfloat *w);
+void cftmdl(int n, int l, sfloat *a, sfloat *w);
+
+#endif /* _OURA_H */