Changeset b511fa9 for src


Ignore:
Timestamp:
Sep 23, 2009, 7:40:14 PM (16 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:
000b090
Parents:
2062e48
Message:

replace FOO_SUPPORT with HAVE_FOO, use float for jack_process function prototype

Location:
src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • src/aubio_priv.h

    r2062e48 rb511fa9  
    3333 */
    3434
    35 #if HAVE_CONFIG_H
     35#if 1 //HAVE_CONFIG_H
    3636#include "config.h"
    3737#endif
     
    5858#endif
    5959
    60 #if HAVE_STRINGS_H
     60#if HAVE_STRING_H
    6161#include <string.h>
    6262#endif
  • src/mathutils.c

    r2062e48 rb511fa9  
    419419
    420420void aubio_cleanup(void) {
    421 #if FFTW3_SUPPORT
     421#if HAVE_FFTW3
    422422  fftw_cleanup();
    423423#else
    424 #if FFTW3F_SUPPORT
     424#if HAVE_FFTW3F
    425425  fftwf_cleanup();
    426426#endif
  • src/spectral/fft.c

    r2062e48 rb511fa9  
    2424#include "spectral/fft.h"
    2525
    26 #if FFTW3F_SUPPORT
     26#if HAVE_FFTW3F
    2727#define fftw_malloc            fftwf_malloc
    2828#define fftw_free              fftwf_free
     
    3535#endif
    3636
    37 #if FFTW3F_SUPPORT
     37#if HAVE_FFTW3F
    3838#if !AUBIO_SINGLE_PRECISION
    3939#warning "Using aubio in double precision with fftw3 in single precision"
  • src/spectral/fft.h

    r2062e48 rb511fa9  
    3232
    3333#ifdef HAVE_COMPLEX_H
    34 #if FFTW3F_SUPPORT
     34#if HAVE_FFTW3F
    3535#define FFTW_TYPE fftwf_complex
    3636#else
     
    3838#endif
    3939#else
    40 #if FFTW3F_SUPPORT
     40#if HAVE_FFTW3F
    4141/** fft data type */
    4242#define FFTW_TYPE float
Note: See TracChangeset for help on using the changeset viewer.