[7a04950] | 1 | /* |
---|
| 2 | Copyright (C) 2004, 2005 Mario Lang <mlang@delysid.org> |
---|
| 3 | |
---|
| 4 | This program is free software; you can redistribute it and/or modify |
---|
| 5 | it under the terms of the GNU General Public License as published by |
---|
| 6 | the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | (at your option) any later version. |
---|
| 8 | |
---|
| 9 | This program is distributed in the hope that it will be useful, |
---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | GNU General Public License for more details. |
---|
| 13 | |
---|
| 14 | You should have received a copy of the GNU General Public License |
---|
| 15 | along with this program; if not, write to the Free Software |
---|
| 16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 17 | |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | #include "aubio_priv.h" |
---|
[6c7d49b] | 21 | #include "fvec.h" |
---|
| 22 | #include "cvec.h" |
---|
[7a04950] | 23 | #include "mathutils.h" |
---|
[32d6958] | 24 | #include "spectral/fft.h" |
---|
[2d8cffa] | 25 | #include "pitch/pitchfcomb.h" |
---|
[7a04950] | 26 | |
---|
| 27 | #define MAX_PEAKS 8 |
---|
| 28 | |
---|
| 29 | typedef struct { |
---|
| 30 | smpl_t freq; |
---|
| 31 | smpl_t db; |
---|
| 32 | } aubio_fpeak_t; |
---|
| 33 | |
---|
| 34 | struct _aubio_pitchfcomb_t { |
---|
[c8cbf3c] | 35 | uint_t fftSize; |
---|
| 36 | uint_t stepSize; |
---|
| 37 | uint_t rate; |
---|
| 38 | fvec_t * winput; |
---|
| 39 | fvec_t * win; |
---|
| 40 | cvec_t * fftOut; |
---|
| 41 | fvec_t * fftLastPhase; |
---|
| 42 | aubio_fft_t * fft; |
---|
| 43 | //aubio_pvoc_t * pvoc; |
---|
[7a04950] | 44 | }; |
---|
| 45 | |
---|
[fbd3de6] | 46 | aubio_pitchfcomb_t * new_aubio_pitchfcomb (uint_t bufsize, uint_t hopsize, uint_t samplerate) |
---|
[7a04950] | 47 | { |
---|
| 48 | aubio_pitchfcomb_t * p = AUBIO_NEW(aubio_pitchfcomb_t); |
---|
| 49 | p->rate = samplerate; |
---|
[fbd3de6] | 50 | p->fftSize = bufsize; |
---|
[c8cbf3c] | 51 | p->stepSize = hopsize; |
---|
[fbd3de6] | 52 | p->winput = new_fvec(bufsize,1); |
---|
| 53 | p->fftOut = new_cvec(bufsize,1); |
---|
| 54 | p->fftLastPhase = new_fvec(bufsize,1); |
---|
[8b2dc90] | 55 | p->fft = new_aubio_fft(bufsize, 1); |
---|
[d84d19e] | 56 | p->win = new_aubio_window(bufsize, aubio_win_hanning); |
---|
[7a04950] | 57 | return p; |
---|
| 58 | } |
---|
| 59 | |
---|
| 60 | /* input must be stepsize long */ |
---|
[1294862] | 61 | smpl_t aubio_pitchfcomb_do (aubio_pitchfcomb_t * p, fvec_t * input) |
---|
[7a04950] | 62 | { |
---|
[fbd3de6] | 63 | uint_t k, l, maxharm = 0; |
---|
[7a04950] | 64 | smpl_t freqPerBin = p->rate/(smpl_t)p->fftSize, |
---|
[fbd3de6] | 65 | phaseDifference = TWO_PI*(smpl_t)p->stepSize/(smpl_t)p->fftSize; |
---|
[7a04950] | 66 | aubio_fpeak_t peaks[MAX_PEAKS]; |
---|
| 67 | |
---|
| 68 | for (k=0; k<MAX_PEAKS; k++) { |
---|
| 69 | peaks[k].db = -200.; |
---|
| 70 | peaks[k].freq = 0.; |
---|
| 71 | } |
---|
| 72 | |
---|
[fbd3de6] | 73 | for (k=0; k < input->length; k++){ |
---|
[c8cbf3c] | 74 | p->winput->data[0][k] = p->win->data[0][k] * input->data[0][k]; |
---|
[fbd3de6] | 75 | } |
---|
[8b2dc90] | 76 | aubio_fft_do(p->fft,p->winput,p->fftOut); |
---|
[7a04950] | 77 | |
---|
[fbd3de6] | 78 | for (k=0; k<=p->fftSize/2; k++) { |
---|
[7a04950] | 79 | smpl_t |
---|
| 80 | magnitude = 20.*LOG10(2.*p->fftOut->norm[0][k]/(smpl_t)p->fftSize), |
---|
| 81 | phase = p->fftOut->phas[0][k], |
---|
| 82 | tmp, freq; |
---|
| 83 | |
---|
| 84 | /* compute phase difference */ |
---|
| 85 | tmp = phase - p->fftLastPhase->data[0][k]; |
---|
| 86 | p->fftLastPhase->data[0][k] = phase; |
---|
| 87 | |
---|
| 88 | /* subtract expected phase difference */ |
---|
| 89 | tmp -= (smpl_t)k*phaseDifference; |
---|
| 90 | |
---|
| 91 | /* map delta phase into +/- Pi interval */ |
---|
[1d4fc4a] | 92 | tmp = aubio_unwrap2pi(tmp); |
---|
[7a04950] | 93 | |
---|
| 94 | /* get deviation from bin frequency from the +/- Pi interval */ |
---|
[1d4fc4a] | 95 | tmp = p->fftSize/(smpl_t)p->stepSize*tmp/(TWO_PI); |
---|
[7a04950] | 96 | |
---|
| 97 | /* compute the k-th partials' true frequency */ |
---|
| 98 | freq = (smpl_t)k*freqPerBin + tmp*freqPerBin; |
---|
| 99 | |
---|
[fbd3de6] | 100 | if (freq > 0.0 && magnitude > peaks[0].db) { // && magnitude < 0) { |
---|
[7a04950] | 101 | memmove(peaks+1, peaks, sizeof(aubio_fpeak_t)*(MAX_PEAKS-1)); |
---|
| 102 | peaks[0].freq = freq; |
---|
| 103 | peaks[0].db = magnitude; |
---|
| 104 | } |
---|
| 105 | } |
---|
[c8cbf3c] | 106 | |
---|
[7a04950] | 107 | k = 0; |
---|
| 108 | for (l=1; l<MAX_PEAKS && peaks[l].freq > 0.0; l++) { |
---|
| 109 | sint_t harmonic; |
---|
| 110 | for (harmonic=5; harmonic>1; harmonic--) { |
---|
| 111 | if (peaks[0].freq / peaks[l].freq < harmonic+.02 && |
---|
[c8cbf3c] | 112 | peaks[0].freq / peaks[l].freq > harmonic-.02) { |
---|
[b33e355] | 113 | if (harmonic > (sint_t)maxharm && |
---|
[c8cbf3c] | 114 | peaks[0].db < peaks[l].db/2) { |
---|
[7a04950] | 115 | maxharm = harmonic; |
---|
[c8cbf3c] | 116 | k = l; |
---|
[7a04950] | 117 | } |
---|
| 118 | } |
---|
| 119 | } |
---|
| 120 | } |
---|
[8d84c0b] | 121 | /* quick hack to clean output a bit */ |
---|
[f97445c] | 122 | if (peaks[k].freq > 5000.) return 0.; |
---|
[7a04950] | 123 | return peaks[k].freq; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | void del_aubio_pitchfcomb (aubio_pitchfcomb_t * p) |
---|
| 127 | { |
---|
| 128 | del_cvec(p->fftOut); |
---|
| 129 | del_fvec(p->fftLastPhase); |
---|
[028c8e9] | 130 | del_fvec(p->win); |
---|
| 131 | del_fvec(p->winput); |
---|
[8b2dc90] | 132 | del_aubio_fft(p->fft); |
---|
[7a04950] | 133 | AUBIO_FREE(p); |
---|
| 134 | } |
---|
| 135 | |
---|