Changeset 21234ee for src/spectral/fft.h


Ignore:
Timestamp:
Dec 18, 2013, 8:07:27 AM (10 years ago)
Author:
Paul Brossier <piem@piem.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:
6465d7f
Parents:
1573b16 (diff), c3c6305 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of aubio.org:/git/aubio/aubio into develop

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.h

    r1573b16 r21234ee  
    11/*
    2   Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
     2  Copyright (C) 2003-2013 Paul Brossier <piem@aubio.org>
    33
    44  This file is part of aubio.
     
    2323  Fast Fourier Transform
    2424
     25  Depending on how aubio was compiled, FFT are computed using one of:
     26    - [Ooura](http://www.kurims.kyoto-u.ac.jp/~ooura/fft.html)
     27    - [FFTW3](http://www.fftw.org)
     28    - [vDSP](https://developer.apple.com/library/mac/#documentation/Accelerate/Reference/vDSPRef/Reference/reference.html)
     29
    2530  \example src/spectral/test-fft.c
    2631
    2732*/
    2833
    29 #ifndef FFT_H_
    30 #define FFT_H_
     34#ifndef _AUBIO_FFT_H
     35#define _AUBIO_FFT_H
    3136
    3237#ifdef __cplusplus
     
    3641/** FFT object
    3742 
    38   This object computes forward and backward FFTs, using the complex type to
    39   store the results. The phase vocoder or aubio_mfft_t objects should be
    40   preferred to using directly aubio_fft_t. The FFT are computed using FFTW3
    41   (although support for another library could be added).
     43  This object computes forward and backward FFTs.
    4244
    4345*/
     
    140142#endif
    141143
    142 #endif // FFT_H_
     144#endif /* _AUBIO_FFT_H */
Note: See TracChangeset for help on using the changeset viewer.