From 204ad3e75379b49bb85acf9c528ca0a1b75a00ab Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 31 Dec 2011 07:16:22 +0000 Subject: add a copy of e_fft.h so that vanilla/ compiles with pd-double svn path=/trunk/; revision=15859 --- externals/vanilla/e_fft.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 externals/vanilla/e_fft.h diff --git a/externals/vanilla/e_fft.h b/externals/vanilla/e_fft.h new file mode 100644 index 00000000..e5b1674c --- /dev/null +++ b/externals/vanilla/e_fft.h @@ -0,0 +1,18 @@ +/* Copyright (c) 1997- Miller Puckette and others. +* For information on usage and redistribution, and for a DISCLAIMER OF ALL +* WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ + +#include "m_pd.h" + +typedef struct fft +{ + t_object x_obj; + t_float x_f; +} t_sigfft; + +t_int *sigfft_swap(t_int *w); /* swap two arrays */ + /* take array1 (supply a pointer to beginning) and copy it, + into decreasing addresses, into array 2 (supply a pointer one past the + end), and negate the sign. */ +t_int *sigrfft_flip(t_int *w); +void sigfft_dspx(t_sigfft *x, t_signal **sp, t_int *(*f)(t_int *w)); -- cgit v1.2.1