[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. |
---|
| 10 | |
---|
| 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 | /* This algorithm was developped by A. de Cheveigne and H. Kawahara and |
---|
| 22 | * published in: |
---|
| 23 | * |
---|
| 24 | * de Cheveigné, A., Kawahara, H. (2002) "YIN, a fundamental frequency |
---|
| 25 | * estimator for speech and music", J. Acoust. Soc. Am. 111, 1917-1930. |
---|
| 26 | * |
---|
| 27 | * see http://recherche.ircam.fr/equipes/pcm/pub/people/cheveign.html |
---|
| 28 | */ |
---|
| 29 | |
---|
| 30 | #include "aubio_priv.h" |
---|
[6c7d49b] | 31 | #include "fvec.h" |
---|
[96fb8ad] | 32 | #include "mathutils.h" |
---|
[2d8cffa] | 33 | #include "pitch/pitchyin.h" |
---|
[96fb8ad] | 34 | |
---|
[fddfa64] | 35 | struct _aubio_pitchyin_t |
---|
| 36 | { |
---|
| 37 | fvec_t *yin; |
---|
[2ba3440] | 38 | smpl_t tol; |
---|
| 39 | }; |
---|
| 40 | |
---|
| 41 | /** compute difference function |
---|
| 42 | |
---|
| 43 | \param input input signal |
---|
| 44 | \param yinbuf output buffer to store difference function (half shorter than input) |
---|
| 45 | |
---|
| 46 | */ |
---|
[fddfa64] | 47 | void aubio_pitchyin_diff (fvec_t * input, fvec_t * yinbuf); |
---|
[2ba3440] | 48 | |
---|
| 49 | /** in place computation of the YIN cumulative normalised function |
---|
| 50 | |
---|
| 51 | \param yinbuf input signal (a square difference function), also used to store function |
---|
| 52 | |
---|
| 53 | */ |
---|
[fddfa64] | 54 | void aubio_pitchyin_getcum (fvec_t * yinbuf); |
---|
[2ba3440] | 55 | |
---|
| 56 | /** detect pitch in a YIN function |
---|
| 57 | |
---|
| 58 | \param yinbuf input buffer as computed by aubio_pitchyin_getcum |
---|
| 59 | |
---|
| 60 | */ |
---|
[fddfa64] | 61 | uint_t aubio_pitchyin_getpitch (fvec_t * yinbuf); |
---|
[2ba3440] | 62 | |
---|
[fddfa64] | 63 | aubio_pitchyin_t * |
---|
| 64 | new_aubio_pitchyin (uint_t bufsize) |
---|
| 65 | { |
---|
| 66 | aubio_pitchyin_t *o = AUBIO_NEW (aubio_pitchyin_t); |
---|
[168337e] | 67 | o->yin = new_fvec (bufsize / 2); |
---|
[2ba3440] | 68 | o->tol = 0.15; |
---|
| 69 | return o; |
---|
| 70 | } |
---|
| 71 | |
---|
[fddfa64] | 72 | void |
---|
| 73 | del_aubio_pitchyin (aubio_pitchyin_t * o) |
---|
| 74 | { |
---|
| 75 | del_fvec (o->yin); |
---|
| 76 | AUBIO_FREE (o); |
---|
[2ba3440] | 77 | } |
---|
| 78 | |
---|
[96fb8ad] | 79 | /* outputs the difference function */ |
---|
[fddfa64] | 80 | void |
---|
| 81 | aubio_pitchyin_diff (fvec_t * input, fvec_t * yin) |
---|
| 82 | { |
---|
[168337e] | 83 | uint_t j, tau; |
---|
[a2f3555] | 84 | smpl_t tmp; |
---|
[168337e] | 85 | for (tau = 0; tau < yin->length; tau++) { |
---|
| 86 | yin->data[tau] = 0.; |
---|
| 87 | } |
---|
| 88 | for (tau = 1; tau < yin->length; tau++) { |
---|
| 89 | for (j = 0; j < yin->length; j++) { |
---|
| 90 | tmp = input->data[j] - input->data[j + tau]; |
---|
| 91 | yin->data[tau] += SQR (tmp); |
---|
[a2f3555] | 92 | } |
---|
| 93 | } |
---|
[96fb8ad] | 94 | } |
---|
| 95 | |
---|
| 96 | /* cumulative mean normalized difference function */ |
---|
[fddfa64] | 97 | void |
---|
| 98 | aubio_pitchyin_getcum (fvec_t * yin) |
---|
| 99 | { |
---|
[168337e] | 100 | uint_t tau; |
---|
[a2f3555] | 101 | smpl_t tmp; |
---|
[168337e] | 102 | tmp = 0.; |
---|
| 103 | yin->data[0] = 1.; |
---|
| 104 | //AUBIO_DBG("%f\t",yin->data[0]); |
---|
| 105 | for (tau = 1; tau < yin->length; tau++) { |
---|
| 106 | tmp += yin->data[tau]; |
---|
| 107 | yin->data[tau] *= tau / tmp; |
---|
| 108 | //AUBIO_DBG("%f\t",yin->data[tau]); |
---|
[a2f3555] | 109 | } |
---|
[168337e] | 110 | //AUBIO_DBG("\n"); |
---|
[96fb8ad] | 111 | } |
---|
| 112 | |
---|
[fddfa64] | 113 | uint_t |
---|
| 114 | aubio_pitchyin_getpitch (fvec_t * yin) |
---|
| 115 | { |
---|
[168337e] | 116 | uint_t tau = 1; |
---|
[fddfa64] | 117 | do { |
---|
[168337e] | 118 | if (yin->data[tau] < 0.1) { |
---|
| 119 | while (yin->data[tau + 1] < yin->data[tau]) { |
---|
[a2f3555] | 120 | tau++; |
---|
| 121 | } |
---|
| 122 | return tau; |
---|
| 123 | } |
---|
| 124 | tau++; |
---|
[fddfa64] | 125 | } while (tau < yin->length); |
---|
[a2f3555] | 126 | //AUBIO_DBG("No pitch found"); |
---|
| 127 | return 0; |
---|
[96fb8ad] | 128 | } |
---|
| 129 | |
---|
[09b082d] | 130 | |
---|
| 131 | /* all the above in one */ |
---|
[fddfa64] | 132 | void |
---|
| 133 | aubio_pitchyin_do (aubio_pitchyin_t * o, fvec_t * input, fvec_t * out) |
---|
| 134 | { |
---|
[2ba3440] | 135 | smpl_t tol = o->tol; |
---|
[fddfa64] | 136 | fvec_t *yin = o->yin; |
---|
[168337e] | 137 | uint_t j, tau = 0; |
---|
[a2f3555] | 138 | sint_t period; |
---|
| 139 | smpl_t tmp = 0., tmp2 = 0.; |
---|
[168337e] | 140 | yin->data[0] = 1.; |
---|
| 141 | for (tau = 1; tau < yin->length; tau++) { |
---|
| 142 | yin->data[tau] = 0.; |
---|
| 143 | for (j = 0; j < yin->length; j++) { |
---|
| 144 | tmp = input->data[j] - input->data[j + tau]; |
---|
| 145 | yin->data[tau] += SQR (tmp); |
---|
| 146 | } |
---|
| 147 | tmp2 += yin->data[tau]; |
---|
| 148 | yin->data[tau] *= tau / tmp2; |
---|
| 149 | period = tau - 3; |
---|
| 150 | if (tau > 4 && (yin->data[period] < tol) && |
---|
| 151 | (yin->data[period] < yin->data[period + 1])) { |
---|
| 152 | out->data[0] = fvec_quadint (yin, period); |
---|
| 153 | goto beach; |
---|
[a2f3555] | 154 | } |
---|
| 155 | } |
---|
[168337e] | 156 | out->data[0] = fvec_quadint (yin, fvec_min_elem (yin)); |
---|
| 157 | beach: |
---|
| 158 | return; |
---|
[09b082d] | 159 | } |
---|
| 160 | |
---|
[fddfa64] | 161 | uint_t |
---|
| 162 | aubio_pitchyin_set_tolerance (aubio_pitchyin_t * o, smpl_t tol) |
---|
| 163 | { |
---|
[2ba3440] | 164 | o->tol = tol; |
---|
| 165 | return 0; |
---|
| 166 | } |
---|
| 167 | |
---|
[fddfa64] | 168 | smpl_t |
---|
| 169 | aubio_pitchyin_get_tolerance (aubio_pitchyin_t * o) |
---|
| 170 | { |
---|
[2ba3440] | 171 | return o->tol; |
---|
| 172 | } |
---|