- Timestamp:
- Jul 23, 2006, 12:27:19 PM (18 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- fa4400e
- Parents:
- a89438a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/fft.h
ra89438a r227564e 58 58 59 59 */ 60 externaubio_fft_t * new_aubio_fft(uint_t size);60 aubio_fft_t * new_aubio_fft(uint_t size); 61 61 /** delete FFT object 62 62 … … 64 64 65 65 */ 66 externvoid del_aubio_fft(aubio_fft_t * s);66 void del_aubio_fft(aubio_fft_t * s); 67 67 /** compute forward FFT 68 68 … … 73 73 74 74 */ 75 externvoid aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,75 void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data, 76 76 fft_data_t * spectrum, const uint_t size); 77 77 /** compute backward (inverse) FFT … … 83 83 84 84 */ 85 externvoid aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,85 void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum, 86 86 smpl_t * data, const uint_t size); 87 87 /** compute norm vector from input spectrum
Note: See TracChangeset
for help on using the changeset viewer.