source: src/mathutils.c @ d0f0d55

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampler
Last change on this file since d0f0d55 was b799241, checked in by Paul Brossier <piem@piem.org>, 7 years ago

src/musicutils.h: add fvec_clamp, basic limiter

  • Property mode set to 100644
File size: 14.6 KB
RevLine 
[96fb8ad]1/*
[7380327]2  Copyright (C) 2003-2014 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[a6db140]4  This file is part of aubio.
[96fb8ad]5
[a6db140]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
[a6db140]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/* see in mathutils.h for doc */
22
23#include "aubio_priv.h"
[6c7d49b]24#include "fvec.h"
[96fb8ad]25#include "mathutils.h"
[83963b3]26#include "musicutils.h"
[96fb8ad]27
[407bba9]28/** Window types */
29typedef enum
30{
31  aubio_win_rectangle,
32  aubio_win_hamming,
33  aubio_win_hanning,
34  aubio_win_hanningz,
35  aubio_win_blackman,
36  aubio_win_blackman_harris,
37  aubio_win_gaussian,
38  aubio_win_welch,
39  aubio_win_parzen,
40  aubio_win_default = aubio_win_hanningz,
41} aubio_window_type;
42
[eb7f743]43fvec_t *
[33cd81f]44new_aubio_window (char_t * window_type, uint_t length)
[eb7f743]45{
[33cd81f]46  fvec_t * win = new_fvec (length);
[c21acb9]47  uint_t err;
[ca45e58]48  if (win == NULL) {
49    return NULL;
50  }
[c21acb9]51  err = fvec_set_window (win, window_type);
[ca45e58]52  if (err != 0) {
53    del_fvec(win);
54    return NULL;
55  }
[33cd81f]56  return win;
57}
58
59uint_t fvec_set_window (fvec_t *win, char_t *window_type) {
[8e5c051]60  smpl_t * w = win->data;
[33cd81f]61  uint_t i, size = win->length;
[407bba9]62  aubio_window_type wintype;
[33cd81f]63  if (window_type == NULL) {
64      AUBIO_ERR ("window type can not be null.\n");
65      return 1;
66  } else if (strcmp (window_type, "rectangle") == 0)
[407bba9]67      wintype = aubio_win_rectangle;
68  else if (strcmp (window_type, "hamming") == 0)
69      wintype = aubio_win_hamming;
70  else if (strcmp (window_type, "hanning") == 0)
71      wintype = aubio_win_hanning;
72  else if (strcmp (window_type, "hanningz") == 0)
73      wintype = aubio_win_hanningz;
74  else if (strcmp (window_type, "blackman") == 0)
75      wintype = aubio_win_blackman;
76  else if (strcmp (window_type, "blackman_harris") == 0)
77      wintype = aubio_win_blackman_harris;
78  else if (strcmp (window_type, "gaussian") == 0)
79      wintype = aubio_win_gaussian;
80  else if (strcmp (window_type, "welch") == 0)
81      wintype = aubio_win_welch;
82  else if (strcmp (window_type, "parzen") == 0)
83      wintype = aubio_win_parzen;
84  else if (strcmp (window_type, "default") == 0)
85      wintype = aubio_win_default;
86  else {
[33cd81f]87      AUBIO_ERR ("unknown window type `%s`.\n", window_type);
88      return 1;
[407bba9]89  }
[96fb8ad]90  switch(wintype) {
[b4b0324]91    case aubio_win_rectangle:
[96fb8ad]92      for (i=0;i<size;i++)
[ade9afe]93        w[i] = 0.5;
[96fb8ad]94      break;
[b4b0324]95    case aubio_win_hamming:
[96fb8ad]96      for (i=0;i<size;i++)
97        w[i] = 0.54 - 0.46 * COS(TWO_PI * i / (size));
98      break;
[b4b0324]99    case aubio_win_hanning:
[96fb8ad]100      for (i=0;i<size;i++)
101        w[i] = 0.5 - (0.5 * COS(TWO_PI * i / (size)));
102      break;
[b4b0324]103    case aubio_win_hanningz:
[96fb8ad]104      for (i=0;i<size;i++)
105        w[i] = 0.5 * (1.0 - COS(TWO_PI * i / (size)));
106      break;
[b4b0324]107    case aubio_win_blackman:
[96fb8ad]108      for (i=0;i<size;i++)
109        w[i] = 0.42
110          - 0.50 * COS(    TWO_PI*i/(size-1.0))
[ade9afe]111          + 0.08 * COS(2.0*TWO_PI*i/(size-1.0));
[96fb8ad]112      break;
[b4b0324]113    case aubio_win_blackman_harris:
[96fb8ad]114      for (i=0;i<size;i++)
[ade9afe]115        w[i] = 0.35875
[96fb8ad]116          - 0.48829 * COS(    TWO_PI*i/(size-1.0))
117          + 0.14128 * COS(2.0*TWO_PI*i/(size-1.0))
118          - 0.01168 * COS(3.0*TWO_PI*i/(size-1.0));
119      break;
[b4b0324]120    case aubio_win_gaussian:
[9e56228]121      {
122        lsmp_t a, b, c = 0.5;
123        uint_t n;
124        for (n = 0; n < size; n++)
125        {
126          a = (n-c*(size-1))/(SQR(c)*(size-1));
127          b = -c*SQR(a);
128          w[n] = EXP(b);
129        }
130      }
[96fb8ad]131      break;
[b4b0324]132    case aubio_win_welch:
[96fb8ad]133      for (i=0;i<size;i++)
[f9d5346]134        w[i] = 1.0 - SQR((2.*i-size)/(size+1.0));
[96fb8ad]135      break;
[b4b0324]136    case aubio_win_parzen:
[96fb8ad]137      for (i=0;i<size;i++)
[053495b]138        w[i] = 1.0 - ABS((2.f*i-size)/(size+1.0f));
[96fb8ad]139      break;
140    default:
141      break;
142  }
[33cd81f]143  return 0;
[96fb8ad]144}
145
[eb7f743]146smpl_t
147aubio_unwrap2pi (smpl_t phase)
148{
[96fb8ad]149  /* mod(phase+pi,-2pi)+pi */
[eb7f743]150  return phase + TWO_PI * (1. + FLOOR (-(phase + PI) / TWO_PI));
[96fb8ad]151}
152
[eb7f743]153smpl_t
154fvec_mean (fvec_t * s)
155{
[56ef7e1]156  smpl_t tmp = 0.0;
[98d8d2b]157#ifndef HAVE_ACCELERATE
158  uint_t j;
[8e5c051]159  for (j = 0; j < s->length; j++) {
160    tmp += s->data[j];
161  }
[56ef7e1]162  return tmp / (smpl_t) (s->length);
[98d8d2b]163#else
[ee6ca74]164  aubio_vDSP_meanv(s->data, 1, &tmp, s->length);
[98d8d2b]165  return tmp;
166#endif /* HAVE_ACCELERATE */
[56ef7e1]167}
168
169smpl_t
[eb7f743]170fvec_sum (fvec_t * s)
171{
[acf7d30]172  smpl_t tmp = 0.0;
[98d8d2b]173#ifndef HAVE_ACCELERATE
174  uint_t j;
[8e5c051]175  for (j = 0; j < s->length; j++) {
176    tmp += s->data[j];
[eb7f743]177  }
[98d8d2b]178#else
[ee6ca74]179  aubio_vDSP_sve(s->data, 1, &tmp, s->length);
[98d8d2b]180#endif /* HAVE_ACCELERATE */
[96fb8ad]181  return tmp;
182}
183
[eb7f743]184smpl_t
185fvec_max (fvec_t * s)
186{
[7c07af2]187#ifndef HAVE_ACCELERATE
[8e5c051]188  uint_t j;
[acf7d30]189  smpl_t tmp = 0.0;
[8e5c051]190  for (j = 0; j < s->length; j++) {
191    tmp = (tmp > s->data[j]) ? tmp : s->data[j];
[eb7f743]192  }
[7c07af2]193#else
194  smpl_t tmp = 0.;
[ee6ca74]195  aubio_vDSP_maxv(s->data, 1, &tmp, s->length);
[7c07af2]196#endif
[96fb8ad]197  return tmp;
198}
199
[eb7f743]200smpl_t
201fvec_min (fvec_t * s)
202{
[7c07af2]203#ifndef HAVE_ACCELERATE
[8e5c051]204  uint_t j;
205  smpl_t tmp = s->data[0];
206  for (j = 0; j < s->length; j++) {
207    tmp = (tmp < s->data[j]) ? tmp : s->data[j];
[eb7f743]208  }
[7c07af2]209#else
210  smpl_t tmp = 0.;
[ee6ca74]211  aubio_vDSP_minv(s->data, 1, &tmp, s->length);
[7c07af2]212#endif
[96fb8ad]213  return tmp;
214}
215
[eb7f743]216uint_t
217fvec_min_elem (fvec_t * s)
218{
[7c07af2]219#ifndef HAVE_ACCELERATE
[8e5c051]220  uint_t j, pos = 0.;
221  smpl_t tmp = s->data[0];
222  for (j = 0; j < s->length; j++) {
223    pos = (tmp < s->data[j]) ? pos : j;
224    tmp = (tmp < s->data[j]) ? tmp : s->data[j];
[eb7f743]225  }
[7c07af2]226#else
227  smpl_t tmp = 0.;
228  uint_t pos = 0.;
[ee6ca74]229  aubio_vDSP_minvi(s->data, 1, &tmp, (vDSP_Length *)&pos, s->length);
[7c07af2]230#endif
[96fb8ad]231  return pos;
232}
233
[eb7f743]234uint_t
235fvec_max_elem (fvec_t * s)
236{
[7c07af2]237#ifndef HAVE_ACCELERATE
[8e5c051]238  uint_t j, pos = 0;
[acf7d30]239  smpl_t tmp = 0.0;
[8e5c051]240  for (j = 0; j < s->length; j++) {
241    pos = (tmp > s->data[j]) ? pos : j;
242    tmp = (tmp > s->data[j]) ? tmp : s->data[j];
[eb7f743]243  }
[7c07af2]244#else
245  smpl_t tmp = 0.;
246  uint_t pos = 0.;
[ee6ca74]247  aubio_vDSP_maxvi(s->data, 1, &tmp, (vDSP_Length *)&pos, s->length);
[7c07af2]248#endif
[96fb8ad]249  return pos;
250}
251
[eb7f743]252void
253fvec_shift (fvec_t * s)
254{
[4bf3731]255  uint_t half = s->length / 2, start = half, j;
[116bd1b]256  // if length is odd, middle element is moved to the end
257  if (2 * half < s->length) start ++;
[0a0d9b0]258#ifndef HAVE_ATLAS
[4bf3731]259  for (j = 0; j < half; j++) {
[116bd1b]260    ELEM_SWAP (s->data[j], s->data[j + start]);
[eb7f743]261  }
[8982328]262#else
[116bd1b]263  aubio_cblas_swap(half, s->data, 1, s->data + start, 1);
[8982328]264#endif
[116bd1b]265  if (start != half) {
[4bf3731]266    for (j = 0; j < half; j++) {
[116bd1b]267      ELEM_SWAP (s->data[j + start - 1], s->data[j + start]);
268    }
269  }
270}
271
272void
273fvec_ishift (fvec_t * s)
274{
[4bf3731]275  uint_t half = s->length / 2, start = half, j;
[116bd1b]276  // if length is odd, middle element is moved to the beginning
277  if (2 * half < s->length) start ++;
278#ifndef HAVE_ATLAS
[4bf3731]279  for (j = 0; j < half; j++) {
[116bd1b]280    ELEM_SWAP (s->data[j], s->data[j + start]);
281  }
282#else
283  aubio_cblas_swap(half, s->data, 1, s->data + start, 1);
284#endif
285  if (start != half) {
[4bf3731]286    for (j = 0; j < half; j++) {
[116bd1b]287      ELEM_SWAP (s->data[half], s->data[j]);
288    }
289  }
[96fb8ad]290}
291
[ee8a57c]292void fvec_push(fvec_t *in, smpl_t new_elem) {
293  uint_t i;
294  for (i = 0; i < in->length - 1; i++) {
295    in->data[i] = in->data[i + 1];
296  }
297  in->data[in->length - 1] = new_elem;
298}
299
[b799241]300void fvec_clamp(fvec_t *in, smpl_t absmax) {
301  uint_t i;
302  for (i = 0; i < in->length; i++) {
303    if (in->data[i] > 0 && in->data[i] > ABS(absmax)) {
304      in->data[i] = absmax;
305    } else if (in->data[i] < 0 && in->data[i] < -ABS(absmax)) {
306      in->data[i] = -absmax;
307    }
308  }
309}
310
[eb7f743]311smpl_t
[ad1df9b]312aubio_level_lin (const fvec_t * f)
[eb7f743]313{
314  smpl_t energy = 0.;
[0a0d9b0]315#ifndef HAVE_ATLAS
[8e5c051]316  uint_t j;
317  for (j = 0; j < f->length; j++) {
318    energy += SQR (f->data[j]);
[eb7f743]319  }
[8982328]320#else
321  energy = aubio_cblas_dot(f->length, f->data, 1, f->data, 1);
322#endif
[1a74ac3]323  return energy / f->length;
[96fb8ad]324}
325
[eb7f743]326smpl_t
327fvec_local_hfc (fvec_t * v)
328{
329  smpl_t hfc = 0.;
[8e5c051]330  uint_t j;
331  for (j = 0; j < v->length; j++) {
332    hfc += (j + 1) * v->data[j];
[eb7f743]333  }
334  return hfc;
[96fb8ad]335}
336
[eb7f743]337void
338fvec_min_removal (fvec_t * v)
339{
340  smpl_t v_min = fvec_min (v);
341  fvec_add (v,  - v_min );
[96fb8ad]342}
343
[eb7f743]344smpl_t
345fvec_alpha_norm (fvec_t * o, smpl_t alpha)
[c0b295c]346{
[8e5c051]347  uint_t j;
[eb7f743]348  smpl_t tmp = 0.;
[8e5c051]349  for (j = 0; j < o->length; j++) {
350    tmp += POW (ABS (o->data[j]), alpha);
[c0b295c]351  }
[eb7f743]352  return POW (tmp / o->length, 1. / alpha);
[96fb8ad]353}
354
[eb7f743]355void
356fvec_alpha_normalise (fvec_t * o, smpl_t alpha)
357{
[8e5c051]358  uint_t j;
[eb7f743]359  smpl_t norm = fvec_alpha_norm (o, alpha);
[8e5c051]360  for (j = 0; j < o->length; j++) {
361    o->data[j] /= norm;
[96fb8ad]362  }
363}
364
[eb7f743]365void
366fvec_add (fvec_t * o, smpl_t val)
367{
[8e5c051]368  uint_t j;
369  for (j = 0; j < o->length; j++) {
370    o->data[j] += val;
[96fb8ad]371  }
372}
373
[5c4ec3c]374void fvec_adapt_thres(fvec_t * vec, fvec_t * tmp,
[8e5c051]375    uint_t post, uint_t pre) {
376  uint_t length = vec->length, j;
[96fb8ad]377  for (j=0;j<length;j++) {
[8e5c051]378    vec->data[j] -= fvec_moving_thres(vec, tmp, post, pre, j);
[96fb8ad]379  }
380}
381
[eb7f743]382smpl_t
383fvec_moving_thres (fvec_t * vec, fvec_t * tmpvec,
[8e5c051]384    uint_t post, uint_t pre, uint_t pos)
[eb7f743]385{
[8e5c051]386  uint_t k;
387  smpl_t *medar = (smpl_t *) tmpvec->data;
[eb7f743]388  uint_t win_length = post + pre + 1;
389  uint_t length = vec->length;
[96fb8ad]390  /* post part of the buffer does not exist */
[eb7f743]391  if (pos < post + 1) {
392    for (k = 0; k < post + 1 - pos; k++)
393      medar[k] = 0.;            /* 0-padding at the beginning */
394    for (k = post + 1 - pos; k < win_length; k++)
[8e5c051]395      medar[k] = vec->data[k + pos - post];
[eb7f743]396    /* the buffer is fully defined */
397  } else if (pos + pre < length) {
398    for (k = 0; k < win_length; k++)
[8e5c051]399      medar[k] = vec->data[k + pos - post];
[eb7f743]400    /* pre part of the buffer does not exist */
[96fb8ad]401  } else {
[eb7f743]402    for (k = 0; k < length - pos + post; k++)
[8e5c051]403      medar[k] = vec->data[k + pos - post];
[eb7f743]404    for (k = length - pos + post; k < win_length; k++)
405      medar[k] = 0.;            /* 0-padding at the end */
[ade9afe]406  }
[8e5c051]407  return fvec_median (tmpvec);
[96fb8ad]408}
409
[8e5c051]410smpl_t fvec_median (fvec_t * input) {
[96fb8ad]411  uint_t n = input->length;
[8e5c051]412  smpl_t * arr = (smpl_t *) input->data;
[96fb8ad]413  uint_t low, high ;
414  uint_t median;
415  uint_t middle, ll, hh;
416
417  low = 0 ; high = n-1 ; median = (low + high) / 2;
418  for (;;) {
419    if (high <= low) /* One element only */
420      return arr[median] ;
421
422    if (high == low + 1) {  /* Two elements only */
423      if (arr[low] > arr[high])
424        ELEM_SWAP(arr[low], arr[high]) ;
425      return arr[median] ;
426    }
427
428    /* Find median of low, middle and high items; swap into position low */
429    middle = (low + high) / 2;
430    if (arr[middle] > arr[high])    ELEM_SWAP(arr[middle], arr[high]);
431    if (arr[low]    > arr[high])    ELEM_SWAP(arr[low],    arr[high]);
432    if (arr[middle] > arr[low])     ELEM_SWAP(arr[middle], arr[low]) ;
433
434    /* Swap low item (now in position middle) into position (low+1) */
435    ELEM_SWAP(arr[middle], arr[low+1]) ;
436
437    /* Nibble from each end towards middle, swapping items when stuck */
438    ll = low + 1;
439    hh = high;
440    for (;;) {
441      do ll++; while (arr[low] > arr[ll]) ;
442      do hh--; while (arr[hh]  > arr[low]) ;
443
444      if (hh < ll)
445        break;
446
447      ELEM_SWAP(arr[ll], arr[hh]) ;
448    }
449
450    /* Swap middle item (in position low) back into correct position */
451    ELEM_SWAP(arr[low], arr[hh]) ;
452
453    /* Re-set active partition */
454    if (hh <= median)
455      low = ll;
456    if (hh >= median)
457      high = hh - 1;
458  }
459}
460
[ad1df9b]461smpl_t fvec_quadratic_peak_pos (const fvec_t * x, uint_t pos) {
[5644069]462  smpl_t s0, s1, s2; uint_t x0, x2;
[6ab6611]463  smpl_t half = .5, two = 2.;
[acd97d1]464  if (pos == 0 || pos == x->length - 1) return pos;
[5644069]465  x0 = (pos < 1) ? pos : pos - 1;
466  x2 = (pos + 1 < x->length) ? pos + 1 : pos;
[9499eefb]467  if (x0 == pos) return (x->data[pos] <= x->data[x2]) ? pos : x2;
468  if (x2 == pos) return (x->data[pos] <= x->data[x0]) ? pos : x0;
469  s0 = x->data[x0];
470  s1 = x->data[pos];
471  s2 = x->data[x2];
[6ab6611]472  return pos + half * (s0 - s2 ) / (s0 - two * s1 + s2);
[9499eefb]473}
474
[7380327]475smpl_t fvec_quadratic_peak_mag (fvec_t *x, smpl_t pos) {
476  smpl_t x0, x1, x2;
477  uint_t index = (uint_t)(pos - .5) + 1;
478  if (pos >= x->length || pos < 0.) return 0.;
479  if ((smpl_t)index == pos) return x->data[index];
480  x0 = x->data[index - 1];
481  x1 = x->data[index];
482  x2 = x->data[index + 1];
483  return x1 - .25 * (x0 - x2) * (pos - index);
484}
485
[ad1df9b]486uint_t fvec_peakpick(const fvec_t * onset, uint_t pos) {
[8e5c051]487  uint_t tmp=0;
488  tmp = (onset->data[pos] > onset->data[pos-1]
489      &&  onset->data[pos] > onset->data[pos+1]
490      &&  onset->data[pos] > 0.);
[ade9afe]491  return tmp;
[96fb8ad]492}
493
[eb7f743]494smpl_t
495aubio_quadfrac (smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf)
496{
497  smpl_t tmp =
498      s0 + (pf / 2.) * (pf * (s0 - 2. * s1 + s2) - 3. * s0 + 4. * s1 - s2);
499  return tmp;
500}
501
502smpl_t
503aubio_freqtomidi (smpl_t freq)
504{
[5644069]505  smpl_t midi;
[037319a]506  if (freq < 2. || freq > 100000.) return 0.; // avoid nans and infs
[ade9afe]507  /* log(freq/A-2)/log(2) */
[5644069]508  midi = freq / 6.875;
[eb7f743]509  midi = LOG (midi) / 0.69314718055995;
[ade9afe]510  midi *= 12;
511  midi -= 3;
512  return midi;
[79c2e52]513}
514
[eb7f743]515smpl_t
516aubio_miditofreq (smpl_t midi)
517{
[5644069]518  smpl_t freq;
[037319a]519  if (midi > 140.) return 0.; // avoid infs
[5644069]520  freq = (midi + 3.) / 12.;
[eb7f743]521  freq = EXP (freq * 0.69314718055995);
[ade9afe]522  freq *= 6.875;
523  return freq;
[96fb8ad]524}
525
[eb7f743]526smpl_t
527aubio_bintofreq (smpl_t bin, smpl_t samplerate, smpl_t fftsize)
528{
529  smpl_t freq = samplerate / fftsize;
[c965b33]530  return freq * MAX(bin, 0);
[96fb8ad]531}
532
[eb7f743]533smpl_t
534aubio_bintomidi (smpl_t bin, smpl_t samplerate, smpl_t fftsize)
535{
536  smpl_t midi = aubio_bintofreq (bin, samplerate, fftsize);
537  return aubio_freqtomidi (midi);
[96fb8ad]538}
539
[eb7f743]540smpl_t
541aubio_freqtobin (smpl_t freq, smpl_t samplerate, smpl_t fftsize)
542{
543  smpl_t bin = fftsize / samplerate;
[c965b33]544  return MAX(freq, 0) * bin;
[79c2e52]545}
546
[eb7f743]547smpl_t
548aubio_miditobin (smpl_t midi, smpl_t samplerate, smpl_t fftsize)
549{
550  smpl_t freq = aubio_miditofreq (midi);
551  return aubio_freqtobin (freq, samplerate, fftsize);
[79c2e52]552}
553
[10a5413]554uint_t
[41f4c5b]555aubio_is_power_of_two (uint_t a)
556{
557  if ((a & (a - 1)) == 0) {
[10a5413]558    return 1;
559  } else {
[41f4c5b]560    return 0;
[10a5413]561  }
562}
563
564uint_t
[41f4c5b]565aubio_next_power_of_two (uint_t a)
566{
[7581185]567  uint_t i = 1;
568  while (i < a) i <<= 1;
569  return i;
[10a5413]570}
571
[eb7f743]572smpl_t
[ad1df9b]573aubio_db_spl (const fvec_t * o)
[eb7f743]574{
[5b41ef9]575  return 10. * LOG10 (aubio_level_lin (o));
[96fb8ad]576}
577
[eb7f743]578uint_t
[ad1df9b]579aubio_silence_detection (const fvec_t * o, smpl_t threshold)
[eb7f743]580{
581  return (aubio_db_spl (o) < threshold);
582}
[96fb8ad]583
[eb7f743]584smpl_t
[24e9b0a]585aubio_level_detection (const fvec_t * o, smpl_t threshold)
[eb7f743]586{
587  smpl_t db_spl = aubio_db_spl (o);
588  if (db_spl < threshold) {
[ade9afe]589    return 1.;
[eb7f743]590  } else {
591    return db_spl;
592  }
[96fb8ad]593}
[a0fd4e4]594
[eb7f743]595smpl_t
596aubio_zero_crossing_rate (fvec_t * input)
597{
[8e5c051]598  uint_t j;
[fff2bee]599  uint_t zcr = 0;
[eb7f743]600  for (j = 1; j < input->length; j++) {
[7e204d01]601    // previous was strictly negative
[8e5c051]602    if (input->data[j - 1] < 0.) {
[7e204d01]603      // current is positive or null
[8e5c051]604      if (input->data[j] >= 0.) {
[7e204d01]605        zcr += 1;
606      }
[eb7f743]607      // previous was positive or null
[7e204d01]608    } else {
609      // current is strictly negative
[8e5c051]610      if (input->data[j] < 0.) {
[fff2bee]611        zcr += 1;
612      }
613    }
614  }
[eb7f743]615  return zcr / (smpl_t) input->length;
[fff2bee]616}
617
[eb7f743]618void
[ad1df9b]619aubio_autocorr (const fvec_t * input, fvec_t * output)
[eb7f743]620{
[8e5c051]621  uint_t i, j, length = input->length;
[eb7f743]622  smpl_t *data, *acf;
623  smpl_t tmp = 0;
[8e5c051]624  data = input->data;
625  acf = output->data;
626  for (i = 0; i < length; i++) {
627    tmp = 0.;
628    for (j = i; j < length; j++) {
629      tmp += data[j - i] * data[j];
[ade9afe]630    }
[8e5c051]631    acf[i] = tmp / (smpl_t) (length - i);
[ade9afe]632  }
[a0fd4e4]633}
634
[eb7f743]635void
636aubio_cleanup (void)
637{
[729a3c0]638#ifdef HAVE_FFTW3F
[eb7f743]639  fftwf_cleanup ();
[729a3c0]640#else
641#ifdef HAVE_FFTW3
642  fftw_cleanup ();
[714380d]643#endif
644#endif
645}
Note: See TracBrowser for help on using the repository browser.