[26499e4] | 1 | #include <stdlib.h> |
---|
| 2 | #include <math.h> |
---|
| 3 | #include <complex.h> |
---|
[17fbb7a] | 4 | #include <aubio.h> |
---|
[437fa65] | 5 | |
---|
[26499e4] | 6 | #define NEW_ARRAY(_t,_n) (_t*)malloc((_n)*sizeof(_t)) |
---|
| 7 | |
---|
| 8 | |
---|
[437fa65] | 9 | int main(){ |
---|
| 10 | uint_t i,j; |
---|
[6427e6d] | 11 | uint_t win_s = 1024; // window size |
---|
| 12 | uint_t channels = 1; // number of channel |
---|
| 13 | fvec_t * in = new_fvec (win_s, channels); // input buffer |
---|
| 14 | cvec_t * fftgrain = new_cvec (win_s, channels); // fft norm and phase |
---|
| 15 | fvec_t * out = new_fvec (win_s, channels); // output buffer |
---|
[437fa65] | 16 | |
---|
[6427e6d] | 17 | // allocate fft and other memory space |
---|
| 18 | aubio_fft_t * fft = new_aubio_fft(win_s); // fft interface |
---|
| 19 | smpl_t * w = NEW_ARRAY(smpl_t,win_s); // window |
---|
| 20 | // complex spectral data |
---|
[26499e4] | 21 | fft_data_t ** spec = NEW_ARRAY(fft_data_t*,channels); |
---|
[437fa65] | 22 | for (i=0; i < channels; i++) |
---|
[26499e4] | 23 | spec[i] = NEW_ARRAY(fft_data_t,win_s); |
---|
[6427e6d] | 24 | // initialize the window (see mathutils.c) |
---|
[28d8c4a] | 25 | aubio_window(w,win_s,aubio_win_hanningz); |
---|
[437fa65] | 26 | |
---|
[6427e6d] | 27 | // fill input with some data |
---|
[9ec7876] | 28 | in->data[0][win_s/2] = 1; |
---|
[437fa65] | 29 | |
---|
[6427e6d] | 30 | // execute stft |
---|
[437fa65] | 31 | for (i=0; i < channels; i++) { |
---|
| 32 | aubio_fft_do (fft,in->data[i],spec[i],win_s); |
---|
[6427e6d] | 33 | // put norm and phase into fftgrain |
---|
[437fa65] | 34 | aubio_fft_getnorm(fftgrain->norm[i], spec[i], win_s/2+1); |
---|
| 35 | aubio_fft_getphas(fftgrain->phas[i], spec[i], win_s/2+1); |
---|
| 36 | } |
---|
| 37 | |
---|
[6427e6d] | 38 | // execute inverse fourier transform |
---|
[437fa65] | 39 | for (i=0; i < channels; i++) { |
---|
| 40 | for (j=0; j<win_s/2+1; j++) { |
---|
[26499e4] | 41 | spec[i][j] = cexp(I*aubio_unwrap2pi(fftgrain->phas[i][j])); |
---|
[437fa65] | 42 | spec[i][j] *= fftgrain->norm[i][j]; |
---|
| 43 | } |
---|
| 44 | aubio_fft_rdo(fft,spec[i],out->data[i],win_s); |
---|
| 45 | } |
---|
[17fbb7a] | 46 | |
---|
| 47 | del_fvec(in); |
---|
| 48 | del_fvec(out); |
---|
| 49 | del_cvec(fftgrain); |
---|
[26499e4] | 50 | free(w); |
---|
[17fbb7a] | 51 | del_aubio_fft(fft); |
---|
| 52 | for (i=0; i < channels; i++) |
---|
[26499e4] | 53 | free(spec[i]); |
---|
| 54 | free(spec); |
---|
[17fbb7a] | 55 | aubio_cleanup(); |
---|
[437fa65] | 56 | return 0; |
---|
| 57 | } |
---|