Everything converted to use kiss-fft. Got rid of smallft and fftwrap.

Code much leaner now.
This commit is contained in:
Jean-Marc Valin 2008-02-08 15:09:45 +11:00
parent 6211c90def
commit 7351e286c8
10 changed files with 30 additions and 1684 deletions

View file

@ -23,6 +23,8 @@
#ifndef _PITCH_H
#define _PITCH_H
void find_spectral_pitch(void *fft, float *x, float *y, int lag, int len, int C, int *pitch);
#include "kiss_fftr.h"
void find_spectral_pitch(kiss_fftr_cfg fft, float *x, float *y, int lag, int len, int C, int *pitch);
#endif