Changeset 152ed05 for src/spectral


Ignore:
Timestamp:
Sep 5, 2015, 1:53:08 AM (9 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:
b5d32cb
Parents:
1dd95c7
Message:

src/spectral/fft.c: remove trailing spaces

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/spectral/fft.c

    r1dd95c7 r152ed05  
    6767#warning "Using aubio in double precision with fftw3 in single precision"
    6868#endif /* HAVE_AUBIO_DOUBLE */
    69 #define real_t float 
     69#define real_t float
    7070#else /* HAVE_FFTW3F */
    7171#if !HAVE_AUBIO_DOUBLE
    7272#warning "Using aubio in single precision with fftw3 in double precision"
    7373#endif /* HAVE_AUBIO_DOUBLE */
    74 #define real_t double 
     74#define real_t double
    7575#endif /* HAVE_FFTW3F */
    7676
     
    9696  real_t *in, *out;
    9797  fftw_plan pfw, pbw;
    98   fft_data_t * specdata;     /* complex spectral data */
     98  fft_data_t * specdata;      /* complex spectral data */
    9999#else
    100100#ifdef HAVE_ACCELERATE        // using ACCELERATE
     
    404404  uint_t i;
    405405  for (i = 0; i < compspec->length / 2 + 1; i++) {
    406     compspec->data[i] = 
     406    compspec->data[i] =
    407407      spectrum->norm[i]*COS(spectrum->phas[i]);
    408408  }
Note: See TracChangeset for help on using the changeset viewer.