Changeset 227564e for src


Ignore:
Timestamp:
Jul 23, 2006, 12:27:19 PM (18 years ago)
Author:
Paul Brossier <piem@altern.org>
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
Message:

remove useless extern
remove useless extern

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/fft.h

    ra89438a r227564e  
    5858
    5959*/
    60 extern aubio_fft_t * new_aubio_fft(uint_t size);
     60aubio_fft_t * new_aubio_fft(uint_t size);
    6161/** delete FFT object
    6262
     
    6464
    6565*/
    66 extern void del_aubio_fft(aubio_fft_t * s);
     66void del_aubio_fft(aubio_fft_t * s);
    6767/** compute forward FFT
    6868
     
    7373
    7474*/
    75 extern void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
     75void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
    7676    fft_data_t * spectrum, const uint_t size);
    7777/** compute backward (inverse) FFT
     
    8383
    8484*/
    85 extern void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
     85void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
    8686    smpl_t * data, const uint_t size);
    8787/** compute norm vector from input spectrum
Note: See TracChangeset for help on using the changeset viewer.