Changes in src/spectral/ooura_fft8g.c [5c6b264:029bf4e]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/ooura_fft8g.c
r5c6b264 r029bf4e 1 // 2modifications made for aubio:1 // modifications made for aubio: 2 2 // - replace all 'double' with 'smpl_t' 3 3 // - include "aubio_priv.h" (for config.h and types.h) 4 // - add missing prototypes 4 5 5 6 #include "aubio_priv.h" 7 8 void cdft(int n, int isgn, smpl_t *a, int *ip, smpl_t *w); 9 void rdft(int n, int isgn, smpl_t *a, int *ip, smpl_t *w); 10 void ddct(int n, int isgn, smpl_t *a, int *ip, smpl_t *w); 11 void ddst(int n, int isgn, smpl_t *a, int *ip, smpl_t *w); 12 void dfct(int n, smpl_t *a, smpl_t *t, int *ip, smpl_t *w); 13 void dfst(int n, smpl_t *a, smpl_t *t, int *ip, smpl_t *w); 14 void makewt(int nw, int *ip, smpl_t *w); 15 void makect(int nc, int *ip, smpl_t *c); 16 void bitrv2(int n, int *ip, smpl_t *a); 17 void bitrv2conj(int n, int *ip, smpl_t *a); 18 void cftfsub(int n, smpl_t *a, smpl_t *w); 19 void cftbsub(int n, smpl_t *a, smpl_t *w); 20 void cft1st(int n, smpl_t *a, smpl_t *w); 21 void cftmdl(int n, int l, smpl_t *a, smpl_t *w); 22 void rftfsub(int n, smpl_t *a, int nc, smpl_t *c); 23 void rftbsub(int n, smpl_t *a, int nc, smpl_t *c); 24 void dctsub(int n, smpl_t *a, int nc, smpl_t *c); 25 void dstsub(int n, smpl_t *a, int nc, smpl_t *c); 6 26 7 27 /*
Note: See TracChangeset
for help on using the changeset viewer.