source: src/spectral/fft.c @ 7aa4aaa

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 7aa4aaa was 5c6b264, checked in by Paul Brossier <piem@piem.org>, 11 years ago

src/spectral/ooura_fft8g.c: use float when double is not needed

  • Property mode set to 100644
File size: 12.5 KB
RevLine 
[96fb8ad]1/*
[e6a78ea]2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[e6a78ea]4  This file is part of aubio.
[96fb8ad]5
[e6a78ea]6  aubio is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
[96fb8ad]10
[e6a78ea]11  aubio is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
[96fb8ad]18
19*/
20
21#include "aubio_priv.h"
[aadd27a]22#include "fvec.h"
23#include "cvec.h"
[96fb8ad]24#include "mathutils.h"
[32d6958]25#include "spectral/fft.h"
[96fb8ad]26
[54dd945]27#ifdef HAVE_FFTW3             // using FFTW3
[f3bee79]28/* note that <complex.h> is not included here but only in aubio_priv.h, so that
29 * c++ projects can still use their own complex definition. */
30#include <fftw3.h>
[d453a4a]31#include <pthread.h>
[f3bee79]32
33#ifdef HAVE_COMPLEX_H
[729a3c0]34#ifdef HAVE_FFTW3F
[f3bee79]35/** fft data type with complex.h and fftw3f */
36#define FFTW_TYPE fftwf_complex
37#else
38/** fft data type with complex.h and fftw3 */
39#define FFTW_TYPE fftw_complex
40#endif
41#else
[729a3c0]42#ifdef HAVE_FFTW3F
[f3bee79]43/** fft data type without complex.h and with fftw3f */
44#define FFTW_TYPE float
45#else
46/** fft data type without complex.h and with fftw */
47#define FFTW_TYPE double
48#endif
49#endif
50
51/** fft data type */
52typedef FFTW_TYPE fft_data_t;
53
[729a3c0]54#ifdef HAVE_FFTW3F
[a47cd35]55#define fftw_malloc            fftwf_malloc
56#define fftw_free              fftwf_free
57#define fftw_execute           fftwf_execute
58#define fftw_plan_dft_r2c_1d   fftwf_plan_dft_r2c_1d
59#define fftw_plan_dft_c2r_1d   fftwf_plan_dft_c2r_1d
60#define fftw_plan_r2r_1d       fftwf_plan_r2r_1d
61#define fftw_plan              fftwf_plan
62#define fftw_destroy_plan      fftwf_destroy_plan
[96fb8ad]63#endif
64
[729a3c0]65#ifdef HAVE_FFTW3F
[c204928]66#if HAVE_AUBIO_DOUBLE
[4369cb9]67#warning "Using aubio in double precision with fftw3 in single precision"
[fd6b90f]68#endif /* HAVE_AUBIO_DOUBLE */
[4369cb9]69#define real_t float
[fd6b90f]70#else /* HAVE_FFTW3F */
[c204928]71#if !HAVE_AUBIO_DOUBLE
[fd6b90f]72#warning "Using aubio in single precision with fftw3 in double precision"
73#endif /* HAVE_AUBIO_DOUBLE */
[4369cb9]74#define real_t double
[fd6b90f]75#endif /* HAVE_FFTW3F */
[96fb8ad]76
[d453a4a]77// a global mutex for FFTW thread safety
78pthread_mutex_t aubio_fftw_mutex = PTHREAD_MUTEX_INITIALIZER;
79
[54dd945]80#else
81#ifdef HAVE_ACCELERATE        // using ACCELERATE
82// https://developer.apple.com/library/mac/#documentation/Accelerate/Reference/vDSPRef/Reference/reference.html
83#include <Accelerate/Accelerate.h>
84
85#else                         // using OOURA
86// let's use ooura instead
[5c6b264]87extern void rdft(int, int, smpl_t *, int *, smpl_t *);
[54dd945]88
89#endif /* HAVE_ACCELERATE */
[729a3c0]90#endif /* HAVE_FFTW3 */
91
[96fb8ad]92struct _aubio_fft_t {
[aadd27a]93  uint_t winsize;
94  uint_t fft_size;
[54dd945]95#ifdef HAVE_FFTW3             // using FFTW3
[aadd27a]96  real_t *in, *out;
[4b6937b]97  fftw_plan pfw, pbw;
[aadd27a]98  fft_data_t * specdata;     /* complex spectral data */
[729a3c0]99#else
[54dd945]100#ifdef HAVE_ACCELERATE        // using ACCELERATE
101  int log2fftsize;
[69c39ca]102#if !HAVE_AUBIO_DOUBLE
[54dd945]103  FFTSetup fftSetup;
104  DSPSplitComplex spec;
105  float *in, *out;
[69c39ca]106#else
107  FFTSetupD fftSetup;
108  DSPDoubleSplitComplex spec;
109  double *in, *out;
110#endif
[54dd945]111#else                         // using OOURA
[5c6b264]112  smpl_t *in, *out;
113  smpl_t *w;
[729a3c0]114  int *ip;
[54dd945]115#endif /* HAVE_ACCELERATE */
[729a3c0]116#endif /* HAVE_FFTW3 */
[aadd27a]117  fvec_t * compspec;
[96fb8ad]118};
119
[729a3c0]120aubio_fft_t * new_aubio_fft (uint_t winsize) {
[a47cd35]121  aubio_fft_t * s = AUBIO_NEW(aubio_fft_t);
[729a3c0]122#ifdef HAVE_FFTW3
[8b3a7e7]123  uint_t i;
[aadd27a]124  s->winsize  = winsize;
[a47cd35]125  /* allocate memory */
[aadd27a]126  s->in       = AUBIO_ARRAY(real_t,winsize);
127  s->out      = AUBIO_ARRAY(real_t,winsize);
[d95ff38]128  s->compspec = new_fvec(winsize);
[a47cd35]129  /* create plans */
[d453a4a]130  pthread_mutex_lock(&aubio_fftw_mutex);
[237f632]131#ifdef HAVE_COMPLEX_H
[4b6937b]132  s->fft_size = winsize/2 + 1;
[a47cd35]133  s->specdata = (fft_data_t*)fftw_malloc(sizeof(fft_data_t)*s->fft_size);
[aadd27a]134  s->pfw = fftw_plan_dft_r2c_1d(winsize, s->in,  s->specdata, FFTW_ESTIMATE);
135  s->pbw = fftw_plan_dft_c2r_1d(winsize, s->specdata, s->out, FFTW_ESTIMATE);
[237f632]136#else
[aadd27a]137  s->fft_size = winsize;
[a47cd35]138  s->specdata = (fft_data_t*)fftw_malloc(sizeof(fft_data_t)*s->fft_size);
[aadd27a]139  s->pfw = fftw_plan_r2r_1d(winsize, s->in,  s->specdata, FFTW_R2HC, FFTW_ESTIMATE);
140  s->pbw = fftw_plan_r2r_1d(winsize, s->specdata, s->out, FFTW_HC2R, FFTW_ESTIMATE);
[237f632]141#endif
[d453a4a]142  pthread_mutex_unlock(&aubio_fftw_mutex);
[4f4299d]143  for (i = 0; i < s->winsize; i++) {
144    s->in[i] = 0.;
145    s->out[i] = 0.;
146  }
147  for (i = 0; i < s->fft_size; i++) {
148    s->specdata[i] = 0.;
149  }
[729a3c0]150#else
[54dd945]151#ifdef HAVE_ACCELERATE        // using ACCELERATE
152  s->winsize = winsize;
153  s->fft_size = winsize;
154  s->compspec = new_fvec(winsize);
155  s->log2fftsize = (uint_t)log2f(s->fft_size);
[69c39ca]156#if !HAVE_AUBIO_DOUBLE
[54dd945]157  s->in = AUBIO_ARRAY(float, s->fft_size);
158  s->out = AUBIO_ARRAY(float, s->fft_size);
159  s->spec.realp = AUBIO_ARRAY(float, s->fft_size/2);
160  s->spec.imagp = AUBIO_ARRAY(float, s->fft_size/2);
161  s->fftSetup = vDSP_create_fftsetup(s->log2fftsize, FFT_RADIX2);
[69c39ca]162#else
163  s->in = AUBIO_ARRAY(double, s->fft_size);
164  s->out = AUBIO_ARRAY(double, s->fft_size);
165  s->spec.realp = AUBIO_ARRAY(double, s->fft_size/2);
166  s->spec.imagp = AUBIO_ARRAY(double, s->fft_size/2);
167  s->fftSetup = vDSP_create_fftsetupD(s->log2fftsize, FFT_RADIX2);
168#endif
[54dd945]169#else                         // using OOURA
[729a3c0]170  s->winsize = winsize;
171  s->fft_size = winsize / 2 + 1;
172  s->compspec = new_fvec(winsize);
[5c6b264]173  s->in    = AUBIO_ARRAY(smpl_t, s->winsize);
174  s->out   = AUBIO_ARRAY(smpl_t, s->winsize);
[729a3c0]175  s->ip    = AUBIO_ARRAY(int   , s->fft_size);
[5c6b264]176  s->w     = AUBIO_ARRAY(smpl_t, s->fft_size);
[729a3c0]177  s->ip[0] = 0;
[54dd945]178#endif /* HAVE_ACCELERATE */
179#endif /* HAVE_FFTW3 */
[a47cd35]180  return s;
[96fb8ad]181}
182
183void del_aubio_fft(aubio_fft_t * s) {
[a47cd35]184  /* destroy data */
[aadd27a]185  del_fvec(s->compspec);
[54dd945]186#ifdef HAVE_FFTW3             // using FFTW3
[a47cd35]187  fftw_destroy_plan(s->pfw);
188  fftw_destroy_plan(s->pbw);
189  fftw_free(s->specdata);
[729a3c0]190#else /* HAVE_FFTW3 */
[54dd945]191#ifdef HAVE_ACCELERATE        // using ACCELERATE
192  AUBIO_FREE(s->spec.realp);
193  AUBIO_FREE(s->spec.imagp);
[53ff597]194#if !HAVE_AUBIO_DOUBLE
195  vDSP_destroy_fftsetup(s->fftSetup);
196#else
197  vDSP_destroy_fftsetupD(s->fftSetup);
198#endif
[54dd945]199#else                         // using OOURA
[729a3c0]200  AUBIO_FREE(s->w);
201  AUBIO_FREE(s->ip);
[54dd945]202#endif /* HAVE_ACCELERATE */
[729a3c0]203#endif /* HAVE_FFTW3 */
[a47cd35]204  AUBIO_FREE(s->out);
[729a3c0]205  AUBIO_FREE(s->in);
[a47cd35]206  AUBIO_FREE(s);
[96fb8ad]207}
208
[aadd27a]209void aubio_fft_do(aubio_fft_t * s, fvec_t * input, cvec_t * spectrum) {
210  aubio_fft_do_complex(s, input, s->compspec);
211  aubio_fft_get_spectrum(s->compspec, spectrum);
[96fb8ad]212}
213
[aadd27a]214void aubio_fft_rdo(aubio_fft_t * s, cvec_t * spectrum, fvec_t * output) {
215  aubio_fft_get_realimag(spectrum, s->compspec);
216  aubio_fft_rdo_complex(s, s->compspec, output);
[96fb8ad]217}
218
[aadd27a]219void aubio_fft_do_complex(aubio_fft_t * s, fvec_t * input, fvec_t * compspec) {
[729a3c0]220  uint_t i;
221  for (i=0; i < s->winsize; i++) {
222    s->in[i] = input->data[i];
[d95ff38]223  }
[54dd945]224#ifdef HAVE_FFTW3             // using FFTW3
[d95ff38]225  fftw_execute(s->pfw);
[4b6937b]226#ifdef HAVE_COMPLEX_H
[d95ff38]227  compspec->data[0] = REAL(s->specdata[0]);
[729a3c0]228  for (i = 1; i < s->fft_size -1 ; i++) {
229    compspec->data[i] = REAL(s->specdata[i]);
230    compspec->data[compspec->length - i] = IMAG(s->specdata[i]);
[d95ff38]231  }
232  compspec->data[s->fft_size-1] = REAL(s->specdata[s->fft_size-1]);
[729a3c0]233#else /* HAVE_COMPLEX_H  */
234  for (i = 0; i < s->fft_size; i++) {
235    compspec->data[i] = s->specdata[i];
[237f632]236  }
[729a3c0]237#endif /* HAVE_COMPLEX_H */
238#else /* HAVE_FFTW3 */
[54dd945]239#ifdef HAVE_ACCELERATE        // using ACCELERATE
[69c39ca]240#if !HAVE_AUBIO_DOUBLE
[54dd945]241  // convert real data to even/odd format used in vDSP
[69c39ca]242  vDSP_ctoz((DSPComplex*)s->in, 2, &s->spec, 1, s->fft_size/2);
[54dd945]243  // compute the FFT
244  vDSP_fft_zrip(s->fftSetup, &s->spec, 1, s->log2fftsize, FFT_FORWARD);
[69c39ca]245#else
246  // convert real data to even/odd format used in vDSP
247  vDSP_ctozD((DSPDoubleComplex*)s->in, 2, &s->spec, 1, s->fft_size/2);
248  // compute the FFT
249  vDSP_fft_zripD(s->fftSetup, &s->spec, 1, s->log2fftsize, FFT_FORWARD);
250#endif
[54dd945]251  // convert from vDSP complex split to [ r0, r1, ..., rN, iN-1, .., i2, i1]
252  compspec->data[0] = s->spec.realp[0];
253  compspec->data[s->fft_size / 2] = s->spec.imagp[0];
254  for (i = 1; i < s->fft_size / 2; i++) {
255    compspec->data[i] = s->spec.realp[i];
256    compspec->data[s->fft_size - i] = s->spec.imagp[i];
257  }
258  // apply scaling
259  smpl_t scale = 1./2.;
[69c39ca]260#if !HAVE_AUBIO_DOUBLE
[54dd945]261  vDSP_vsmul(compspec->data, 1, &scale, compspec->data, 1, s->fft_size);
[69c39ca]262#else
263  vDSP_vsmulD(compspec->data, 1, &scale, compspec->data, 1, s->fft_size);
264#endif
[54dd945]265#else                         // using OOURA
[729a3c0]266  rdft(s->winsize, 1, s->in, s->ip, s->w);
267  compspec->data[0] = s->in[0];
268  compspec->data[s->winsize / 2] = s->in[1];
269  for (i = 1; i < s->fft_size - 1; i++) {
270    compspec->data[i] = s->in[2 * i];
271    compspec->data[s->winsize - i] = - s->in[2 * i + 1];
272  }
[54dd945]273#endif /* HAVE_ACCELERATE */
[729a3c0]274#endif /* HAVE_FFTW3 */
[96fb8ad]275}
276
[aadd27a]277void aubio_fft_rdo_complex(aubio_fft_t * s, fvec_t * compspec, fvec_t * output) {
[729a3c0]278  uint_t i;
279#ifdef HAVE_FFTW3
[aadd27a]280  const smpl_t renorm = 1./(smpl_t)s->winsize;
[4b6937b]281#ifdef HAVE_COMPLEX_H
[d95ff38]282  s->specdata[0] = compspec->data[0];
[729a3c0]283  for (i=1; i < s->fft_size - 1; i++) {
284    s->specdata[i] = compspec->data[i] +
285      I * compspec->data[compspec->length - i];
[d95ff38]286  }
287  s->specdata[s->fft_size - 1] = compspec->data[s->fft_size - 1];
[237f632]288#else
[729a3c0]289  for (i=0; i < s->fft_size; i++) {
290    s->specdata[i] = compspec->data[i];
[d95ff38]291  }
[aadd27a]292#endif
[d95ff38]293  fftw_execute(s->pbw);
[729a3c0]294  for (i = 0; i < output->length; i++) {
295    output->data[i] = s->out[i]*renorm;
296  }
297#else /* HAVE_FFTW3 */
[54dd945]298#ifdef HAVE_ACCELERATE        // using ACCELERATE
299  // convert from real imag  [ r0, r1, ..., rN, iN-1, .., i2, i1]
300  // to vDSP packed format   [ r0, rN, r1, i1, ..., rN-1, iN-1 ]
301  s->out[0] = compspec->data[0];
302  s->out[1] = compspec->data[s->winsize / 2];
303  for (i = 1; i < s->fft_size / 2; i++) {
304    s->out[2 * i] = compspec->data[i];
305    s->out[2 * i + 1] = compspec->data[s->winsize - i];
306  }
[69c39ca]307#if !HAVE_AUBIO_DOUBLE
[54dd945]308  // convert to split complex format used in vDSP
[69c39ca]309  vDSP_ctoz((DSPComplex*)s->out, 2, &s->spec, 1, s->fft_size/2);
[54dd945]310  // compute the FFT
311  vDSP_fft_zrip(s->fftSetup, &s->spec, 1, s->log2fftsize, FFT_INVERSE);
312  // convert result to real output
[69c39ca]313  vDSP_ztoc(&s->spec, 1, (DSPComplex*)output->data, 2, s->fft_size/2);
[54dd945]314  // apply scaling
315  smpl_t scale = 1.0 / s->winsize;
316  vDSP_vsmul(output->data, 1, &scale, output->data, 1, s->fft_size);
[69c39ca]317#else
318  // convert to split complex format used in vDSP
319  vDSP_ctozD((DSPDoubleComplex*)s->out, 2, &s->spec, 1, s->fft_size/2);
320  // compute the FFT
321  vDSP_fft_zripD(s->fftSetup, &s->spec, 1, s->log2fftsize, FFT_INVERSE);
322  // convert result to real output
323  vDSP_ztocD(&s->spec, 1, (DSPDoubleComplex*)output->data, 2, s->fft_size/2);
324  // apply scaling
325  smpl_t scale = 1.0 / s->winsize;
326  vDSP_vsmulD(output->data, 1, &scale, output->data, 1, s->fft_size);
327#endif
[54dd945]328#else                         // using OOURA
[729a3c0]329  smpl_t scale = 2.0 / s->winsize;
330  s->out[0] = compspec->data[0];
331  s->out[1] = compspec->data[s->winsize / 2];
332  for (i = 1; i < s->fft_size - 1; i++) {
333    s->out[2 * i] = compspec->data[i];
334    s->out[2 * i + 1] = - compspec->data[s->winsize - i];
[aadd27a]335  }
[729a3c0]336  rdft(s->winsize, -1, s->out, s->ip, s->w);
337  for (i=0; i < s->winsize; i++) {
338    output->data[i] = s->out[i] * scale;
339  }
[54dd945]340#endif /* HAVE_ACCELERATE */
[729a3c0]341#endif /* HAVE_FFTW3 */
[237f632]342}
343
[aadd27a]344void aubio_fft_get_spectrum(fvec_t * compspec, cvec_t * spectrum) {
345  aubio_fft_get_phas(compspec, spectrum);
346  aubio_fft_get_norm(compspec, spectrum);
[237f632]347}
348
[aadd27a]349void aubio_fft_get_realimag(cvec_t * spectrum, fvec_t * compspec) {
350  aubio_fft_get_imag(spectrum, compspec);
351  aubio_fft_get_real(spectrum, compspec);
[237f632]352}
353
[aadd27a]354void aubio_fft_get_phas(fvec_t * compspec, cvec_t * spectrum) {
[729a3c0]355  uint_t i;
[d95ff38]356  if (compspec->data[0] < 0) {
357    spectrum->phas[0] = PI;
358  } else {
359    spectrum->phas[0] = 0.;
360  }
[729a3c0]361  for (i=1; i < spectrum->length - 1; i++) {
362    spectrum->phas[i] = ATAN2(compspec->data[compspec->length-i],
363        compspec->data[i]);
[d95ff38]364  }
365  if (compspec->data[compspec->length/2] < 0) {
366    spectrum->phas[spectrum->length - 1] = PI;
367  } else {
368    spectrum->phas[spectrum->length - 1] = 0.;
[aadd27a]369  }
[f88a326]370}
371
[aadd27a]372void aubio_fft_get_norm(fvec_t * compspec, cvec_t * spectrum) {
[729a3c0]373  uint_t i = 0;
[d95ff38]374  spectrum->norm[0] = ABS(compspec->data[0]);
[729a3c0]375  for (i=1; i < spectrum->length - 1; i++) {
376    spectrum->norm[i] = SQRT(SQR(compspec->data[i])
377        + SQR(compspec->data[compspec->length - i]) );
[a47cd35]378  }
[729a3c0]379  spectrum->norm[spectrum->length-1] =
[d95ff38]380    ABS(compspec->data[compspec->length/2]);
[f88a326]381}
382
[aadd27a]383void aubio_fft_get_imag(cvec_t * spectrum, fvec_t * compspec) {
[729a3c0]384  uint_t i;
385  for (i = 1; i < ( compspec->length + 1 ) / 2 /*- 1 + 1*/; i++) {
386    compspec->data[compspec->length - i] =
387      spectrum->norm[i]*SIN(spectrum->phas[i]);
[a47cd35]388  }
[f88a326]389}
390
[aadd27a]391void aubio_fft_get_real(cvec_t * spectrum, fvec_t * compspec) {
[729a3c0]392  uint_t i;
393  for (i = 0; i < compspec->length / 2 + 1; i++) {
394    compspec->data[i] = 
395      spectrum->norm[i]*COS(spectrum->phas[i]);
[aadd27a]396  }
[f88a326]397}
Note: See TracBrowser for help on using the repository browser.