int main (void)
{
int return_code = 0;
if (!fft) {
return_code = 1;
goto beach;
}
for (i = 0; i < n_iters; i++) {
}
beach:
return return_code;
}
Global aubio include file.
cvec_t * new_cvec(uint_t length)
cvec_t buffer creation function
void del_cvec(cvec_t *s)
cvec_t buffer deletion function
void cvec_print(const cvec_t *s)
print out cvec data
aubio_fft_t * new_aubio_fft(uint_t size)
create new FFT computation object
void aubio_fft_rdo(aubio_fft_t *s, const cvec_t *spectrum, fvec_t *output)
compute backward (inverse) FFT
void del_aubio_fft(aubio_fft_t *s)
delete FFT object
struct _aubio_fft_t aubio_fft_t
FFT object.
void aubio_fft_do(aubio_fft_t *s, const fvec_t *input, cvec_t *spectrum)
compute forward FFT
fvec_t * new_fvec(uint_t length)
fvec_t buffer creation function
void del_fvec(fvec_t *s)
fvec_t buffer deletion function
void aubio_cleanup(void)
clean up cached memory at the end of program
Vector of real-valued phase and spectrum data.
smpl_t * data
data vector of length fvec_t.length
unsigned int uint_t
unsigned integer