[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 */ |
---|
| 29 | typedef 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] | 43 | fvec_t * |
---|
[33cd81f] | 44 | new_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 | |
---|
| 59 | uint_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] | 146 | smpl_t |
---|
| 147 | aubio_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] | 153 | smpl_t |
---|
| 154 | fvec_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 | |
---|
| 169 | smpl_t |
---|
[eb7f743] | 170 | fvec_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] | 184 | smpl_t |
---|
| 185 | fvec_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] | 200 | smpl_t |
---|
| 201 | fvec_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] | 216 | uint_t |
---|
| 217 | fvec_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] | 234 | uint_t |
---|
| 235 | fvec_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] | 252 | void |
---|
| 253 | fvec_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 | |
---|
| 272 | void |
---|
| 273 | fvec_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 | |
---|
[eb7f743] | 292 | smpl_t |
---|
[ad1df9b] | 293 | aubio_level_lin (const fvec_t * f) |
---|
[eb7f743] | 294 | { |
---|
| 295 | smpl_t energy = 0.; |
---|
[0a0d9b0] | 296 | #ifndef HAVE_ATLAS |
---|
[8e5c051] | 297 | uint_t j; |
---|
| 298 | for (j = 0; j < f->length; j++) { |
---|
| 299 | energy += SQR (f->data[j]); |
---|
[eb7f743] | 300 | } |
---|
[8982328] | 301 | #else |
---|
| 302 | energy = aubio_cblas_dot(f->length, f->data, 1, f->data, 1); |
---|
| 303 | #endif |
---|
[1a74ac3] | 304 | return energy / f->length; |
---|
[96fb8ad] | 305 | } |
---|
| 306 | |
---|
[eb7f743] | 307 | smpl_t |
---|
| 308 | fvec_local_hfc (fvec_t * v) |
---|
| 309 | { |
---|
| 310 | smpl_t hfc = 0.; |
---|
[8e5c051] | 311 | uint_t j; |
---|
| 312 | for (j = 0; j < v->length; j++) { |
---|
| 313 | hfc += (j + 1) * v->data[j]; |
---|
[eb7f743] | 314 | } |
---|
| 315 | return hfc; |
---|
[96fb8ad] | 316 | } |
---|
| 317 | |
---|
[eb7f743] | 318 | void |
---|
| 319 | fvec_min_removal (fvec_t * v) |
---|
| 320 | { |
---|
| 321 | smpl_t v_min = fvec_min (v); |
---|
| 322 | fvec_add (v, - v_min ); |
---|
[96fb8ad] | 323 | } |
---|
| 324 | |
---|
[eb7f743] | 325 | smpl_t |
---|
| 326 | fvec_alpha_norm (fvec_t * o, smpl_t alpha) |
---|
[c0b295c] | 327 | { |
---|
[8e5c051] | 328 | uint_t j; |
---|
[eb7f743] | 329 | smpl_t tmp = 0.; |
---|
[8e5c051] | 330 | for (j = 0; j < o->length; j++) { |
---|
| 331 | tmp += POW (ABS (o->data[j]), alpha); |
---|
[c0b295c] | 332 | } |
---|
[eb7f743] | 333 | return POW (tmp / o->length, 1. / alpha); |
---|
[96fb8ad] | 334 | } |
---|
| 335 | |
---|
[eb7f743] | 336 | void |
---|
| 337 | fvec_alpha_normalise (fvec_t * o, smpl_t alpha) |
---|
| 338 | { |
---|
[8e5c051] | 339 | uint_t j; |
---|
[eb7f743] | 340 | smpl_t norm = fvec_alpha_norm (o, alpha); |
---|
[8e5c051] | 341 | for (j = 0; j < o->length; j++) { |
---|
| 342 | o->data[j] /= norm; |
---|
[96fb8ad] | 343 | } |
---|
| 344 | } |
---|
| 345 | |
---|
[eb7f743] | 346 | void |
---|
| 347 | fvec_add (fvec_t * o, smpl_t val) |
---|
| 348 | { |
---|
[8e5c051] | 349 | uint_t j; |
---|
| 350 | for (j = 0; j < o->length; j++) { |
---|
| 351 | o->data[j] += val; |
---|
[96fb8ad] | 352 | } |
---|
| 353 | } |
---|
| 354 | |
---|
[5c4ec3c] | 355 | void fvec_adapt_thres(fvec_t * vec, fvec_t * tmp, |
---|
[8e5c051] | 356 | uint_t post, uint_t pre) { |
---|
| 357 | uint_t length = vec->length, j; |
---|
[96fb8ad] | 358 | for (j=0;j<length;j++) { |
---|
[8e5c051] | 359 | vec->data[j] -= fvec_moving_thres(vec, tmp, post, pre, j); |
---|
[96fb8ad] | 360 | } |
---|
| 361 | } |
---|
| 362 | |
---|
[eb7f743] | 363 | smpl_t |
---|
| 364 | fvec_moving_thres (fvec_t * vec, fvec_t * tmpvec, |
---|
[8e5c051] | 365 | uint_t post, uint_t pre, uint_t pos) |
---|
[eb7f743] | 366 | { |
---|
[8e5c051] | 367 | uint_t k; |
---|
| 368 | smpl_t *medar = (smpl_t *) tmpvec->data; |
---|
[eb7f743] | 369 | uint_t win_length = post + pre + 1; |
---|
| 370 | uint_t length = vec->length; |
---|
[96fb8ad] | 371 | /* post part of the buffer does not exist */ |
---|
[eb7f743] | 372 | if (pos < post + 1) { |
---|
| 373 | for (k = 0; k < post + 1 - pos; k++) |
---|
| 374 | medar[k] = 0.; /* 0-padding at the beginning */ |
---|
| 375 | for (k = post + 1 - pos; k < win_length; k++) |
---|
[8e5c051] | 376 | medar[k] = vec->data[k + pos - post]; |
---|
[eb7f743] | 377 | /* the buffer is fully defined */ |
---|
| 378 | } else if (pos + pre < length) { |
---|
| 379 | for (k = 0; k < win_length; k++) |
---|
[8e5c051] | 380 | medar[k] = vec->data[k + pos - post]; |
---|
[eb7f743] | 381 | /* pre part of the buffer does not exist */ |
---|
[96fb8ad] | 382 | } else { |
---|
[eb7f743] | 383 | for (k = 0; k < length - pos + post; k++) |
---|
[8e5c051] | 384 | medar[k] = vec->data[k + pos - post]; |
---|
[eb7f743] | 385 | for (k = length - pos + post; k < win_length; k++) |
---|
| 386 | medar[k] = 0.; /* 0-padding at the end */ |
---|
[ade9afe] | 387 | } |
---|
[8e5c051] | 388 | return fvec_median (tmpvec); |
---|
[96fb8ad] | 389 | } |
---|
| 390 | |
---|
[8e5c051] | 391 | smpl_t fvec_median (fvec_t * input) { |
---|
[96fb8ad] | 392 | uint_t n = input->length; |
---|
[8e5c051] | 393 | smpl_t * arr = (smpl_t *) input->data; |
---|
[96fb8ad] | 394 | uint_t low, high ; |
---|
| 395 | uint_t median; |
---|
| 396 | uint_t middle, ll, hh; |
---|
| 397 | |
---|
| 398 | low = 0 ; high = n-1 ; median = (low + high) / 2; |
---|
| 399 | for (;;) { |
---|
| 400 | if (high <= low) /* One element only */ |
---|
| 401 | return arr[median] ; |
---|
| 402 | |
---|
| 403 | if (high == low + 1) { /* Two elements only */ |
---|
| 404 | if (arr[low] > arr[high]) |
---|
| 405 | ELEM_SWAP(arr[low], arr[high]) ; |
---|
| 406 | return arr[median] ; |
---|
| 407 | } |
---|
| 408 | |
---|
| 409 | /* Find median of low, middle and high items; swap into position low */ |
---|
| 410 | middle = (low + high) / 2; |
---|
| 411 | if (arr[middle] > arr[high]) ELEM_SWAP(arr[middle], arr[high]); |
---|
| 412 | if (arr[low] > arr[high]) ELEM_SWAP(arr[low], arr[high]); |
---|
| 413 | if (arr[middle] > arr[low]) ELEM_SWAP(arr[middle], arr[low]) ; |
---|
| 414 | |
---|
| 415 | /* Swap low item (now in position middle) into position (low+1) */ |
---|
| 416 | ELEM_SWAP(arr[middle], arr[low+1]) ; |
---|
| 417 | |
---|
| 418 | /* Nibble from each end towards middle, swapping items when stuck */ |
---|
| 419 | ll = low + 1; |
---|
| 420 | hh = high; |
---|
| 421 | for (;;) { |
---|
| 422 | do ll++; while (arr[low] > arr[ll]) ; |
---|
| 423 | do hh--; while (arr[hh] > arr[low]) ; |
---|
| 424 | |
---|
| 425 | if (hh < ll) |
---|
| 426 | break; |
---|
| 427 | |
---|
| 428 | ELEM_SWAP(arr[ll], arr[hh]) ; |
---|
| 429 | } |
---|
| 430 | |
---|
| 431 | /* Swap middle item (in position low) back into correct position */ |
---|
| 432 | ELEM_SWAP(arr[low], arr[hh]) ; |
---|
| 433 | |
---|
| 434 | /* Re-set active partition */ |
---|
| 435 | if (hh <= median) |
---|
| 436 | low = ll; |
---|
| 437 | if (hh >= median) |
---|
| 438 | high = hh - 1; |
---|
| 439 | } |
---|
| 440 | } |
---|
| 441 | |
---|
[ad1df9b] | 442 | smpl_t fvec_quadratic_peak_pos (const fvec_t * x, uint_t pos) { |
---|
[5644069] | 443 | smpl_t s0, s1, s2; uint_t x0, x2; |
---|
[6ab6611] | 444 | smpl_t half = .5, two = 2.; |
---|
[acd97d1] | 445 | if (pos == 0 || pos == x->length - 1) return pos; |
---|
[5644069] | 446 | x0 = (pos < 1) ? pos : pos - 1; |
---|
| 447 | x2 = (pos + 1 < x->length) ? pos + 1 : pos; |
---|
[9499eefb] | 448 | if (x0 == pos) return (x->data[pos] <= x->data[x2]) ? pos : x2; |
---|
| 449 | if (x2 == pos) return (x->data[pos] <= x->data[x0]) ? pos : x0; |
---|
| 450 | s0 = x->data[x0]; |
---|
| 451 | s1 = x->data[pos]; |
---|
| 452 | s2 = x->data[x2]; |
---|
[6ab6611] | 453 | return pos + half * (s0 - s2 ) / (s0 - two * s1 + s2); |
---|
[9499eefb] | 454 | } |
---|
| 455 | |
---|
[7380327] | 456 | smpl_t fvec_quadratic_peak_mag (fvec_t *x, smpl_t pos) { |
---|
| 457 | smpl_t x0, x1, x2; |
---|
| 458 | uint_t index = (uint_t)(pos - .5) + 1; |
---|
| 459 | if (pos >= x->length || pos < 0.) return 0.; |
---|
| 460 | if ((smpl_t)index == pos) return x->data[index]; |
---|
| 461 | x0 = x->data[index - 1]; |
---|
| 462 | x1 = x->data[index]; |
---|
| 463 | x2 = x->data[index + 1]; |
---|
| 464 | return x1 - .25 * (x0 - x2) * (pos - index); |
---|
| 465 | } |
---|
| 466 | |
---|
[ad1df9b] | 467 | uint_t fvec_peakpick(const fvec_t * onset, uint_t pos) { |
---|
[8e5c051] | 468 | uint_t tmp=0; |
---|
| 469 | tmp = (onset->data[pos] > onset->data[pos-1] |
---|
| 470 | && onset->data[pos] > onset->data[pos+1] |
---|
| 471 | && onset->data[pos] > 0.); |
---|
[ade9afe] | 472 | return tmp; |
---|
[96fb8ad] | 473 | } |
---|
| 474 | |
---|
[eb7f743] | 475 | smpl_t |
---|
| 476 | aubio_quadfrac (smpl_t s0, smpl_t s1, smpl_t s2, smpl_t pf) |
---|
| 477 | { |
---|
| 478 | smpl_t tmp = |
---|
| 479 | s0 + (pf / 2.) * (pf * (s0 - 2. * s1 + s2) - 3. * s0 + 4. * s1 - s2); |
---|
| 480 | return tmp; |
---|
| 481 | } |
---|
| 482 | |
---|
| 483 | smpl_t |
---|
| 484 | aubio_freqtomidi (smpl_t freq) |
---|
| 485 | { |
---|
[5644069] | 486 | smpl_t midi; |
---|
[037319a] | 487 | if (freq < 2. || freq > 100000.) return 0.; // avoid nans and infs |
---|
[ade9afe] | 488 | /* log(freq/A-2)/log(2) */ |
---|
[5644069] | 489 | midi = freq / 6.875; |
---|
[eb7f743] | 490 | midi = LOG (midi) / 0.69314718055995; |
---|
[ade9afe] | 491 | midi *= 12; |
---|
| 492 | midi -= 3; |
---|
| 493 | return midi; |
---|
[79c2e52] | 494 | } |
---|
| 495 | |
---|
[eb7f743] | 496 | smpl_t |
---|
| 497 | aubio_miditofreq (smpl_t midi) |
---|
| 498 | { |
---|
[5644069] | 499 | smpl_t freq; |
---|
[037319a] | 500 | if (midi > 140.) return 0.; // avoid infs |
---|
[5644069] | 501 | freq = (midi + 3.) / 12.; |
---|
[eb7f743] | 502 | freq = EXP (freq * 0.69314718055995); |
---|
[ade9afe] | 503 | freq *= 6.875; |
---|
| 504 | return freq; |
---|
[96fb8ad] | 505 | } |
---|
| 506 | |
---|
[eb7f743] | 507 | smpl_t |
---|
| 508 | aubio_bintofreq (smpl_t bin, smpl_t samplerate, smpl_t fftsize) |
---|
| 509 | { |
---|
| 510 | smpl_t freq = samplerate / fftsize; |
---|
[c965b33] | 511 | return freq * MAX(bin, 0); |
---|
[96fb8ad] | 512 | } |
---|
| 513 | |
---|
[eb7f743] | 514 | smpl_t |
---|
| 515 | aubio_bintomidi (smpl_t bin, smpl_t samplerate, smpl_t fftsize) |
---|
| 516 | { |
---|
| 517 | smpl_t midi = aubio_bintofreq (bin, samplerate, fftsize); |
---|
| 518 | return aubio_freqtomidi (midi); |
---|
[96fb8ad] | 519 | } |
---|
| 520 | |
---|
[eb7f743] | 521 | smpl_t |
---|
| 522 | aubio_freqtobin (smpl_t freq, smpl_t samplerate, smpl_t fftsize) |
---|
| 523 | { |
---|
| 524 | smpl_t bin = fftsize / samplerate; |
---|
[c965b33] | 525 | return MAX(freq, 0) * bin; |
---|
[79c2e52] | 526 | } |
---|
| 527 | |
---|
[eb7f743] | 528 | smpl_t |
---|
| 529 | aubio_miditobin (smpl_t midi, smpl_t samplerate, smpl_t fftsize) |
---|
| 530 | { |
---|
| 531 | smpl_t freq = aubio_miditofreq (midi); |
---|
| 532 | return aubio_freqtobin (freq, samplerate, fftsize); |
---|
[79c2e52] | 533 | } |
---|
| 534 | |
---|
[10a5413] | 535 | uint_t |
---|
[41f4c5b] | 536 | aubio_is_power_of_two (uint_t a) |
---|
| 537 | { |
---|
| 538 | if ((a & (a - 1)) == 0) { |
---|
[10a5413] | 539 | return 1; |
---|
| 540 | } else { |
---|
[41f4c5b] | 541 | return 0; |
---|
[10a5413] | 542 | } |
---|
| 543 | } |
---|
| 544 | |
---|
| 545 | uint_t |
---|
[41f4c5b] | 546 | aubio_next_power_of_two (uint_t a) |
---|
| 547 | { |
---|
[7581185] | 548 | uint_t i = 1; |
---|
| 549 | while (i < a) i <<= 1; |
---|
| 550 | return i; |
---|
[10a5413] | 551 | } |
---|
| 552 | |
---|
[eb7f743] | 553 | smpl_t |
---|
[ad1df9b] | 554 | aubio_db_spl (const fvec_t * o) |
---|
[eb7f743] | 555 | { |
---|
[5b41ef9] | 556 | return 10. * LOG10 (aubio_level_lin (o)); |
---|
[96fb8ad] | 557 | } |
---|
| 558 | |
---|
[eb7f743] | 559 | uint_t |
---|
[ad1df9b] | 560 | aubio_silence_detection (const fvec_t * o, smpl_t threshold) |
---|
[eb7f743] | 561 | { |
---|
| 562 | return (aubio_db_spl (o) < threshold); |
---|
| 563 | } |
---|
[96fb8ad] | 564 | |
---|
[eb7f743] | 565 | smpl_t |
---|
[24e9b0a] | 566 | aubio_level_detection (const fvec_t * o, smpl_t threshold) |
---|
[eb7f743] | 567 | { |
---|
| 568 | smpl_t db_spl = aubio_db_spl (o); |
---|
| 569 | if (db_spl < threshold) { |
---|
[ade9afe] | 570 | return 1.; |
---|
[eb7f743] | 571 | } else { |
---|
| 572 | return db_spl; |
---|
| 573 | } |
---|
[96fb8ad] | 574 | } |
---|
[a0fd4e4] | 575 | |
---|
[eb7f743] | 576 | smpl_t |
---|
| 577 | aubio_zero_crossing_rate (fvec_t * input) |
---|
| 578 | { |
---|
[8e5c051] | 579 | uint_t j; |
---|
[fff2bee] | 580 | uint_t zcr = 0; |
---|
[eb7f743] | 581 | for (j = 1; j < input->length; j++) { |
---|
[7e204d01] | 582 | // previous was strictly negative |
---|
[8e5c051] | 583 | if (input->data[j - 1] < 0.) { |
---|
[7e204d01] | 584 | // current is positive or null |
---|
[8e5c051] | 585 | if (input->data[j] >= 0.) { |
---|
[7e204d01] | 586 | zcr += 1; |
---|
| 587 | } |
---|
[eb7f743] | 588 | // previous was positive or null |
---|
[7e204d01] | 589 | } else { |
---|
| 590 | // current is strictly negative |
---|
[8e5c051] | 591 | if (input->data[j] < 0.) { |
---|
[fff2bee] | 592 | zcr += 1; |
---|
| 593 | } |
---|
| 594 | } |
---|
| 595 | } |
---|
[eb7f743] | 596 | return zcr / (smpl_t) input->length; |
---|
[fff2bee] | 597 | } |
---|
| 598 | |
---|
[eb7f743] | 599 | void |
---|
[ad1df9b] | 600 | aubio_autocorr (const fvec_t * input, fvec_t * output) |
---|
[eb7f743] | 601 | { |
---|
[8e5c051] | 602 | uint_t i, j, length = input->length; |
---|
[eb7f743] | 603 | smpl_t *data, *acf; |
---|
| 604 | smpl_t tmp = 0; |
---|
[8e5c051] | 605 | data = input->data; |
---|
| 606 | acf = output->data; |
---|
| 607 | for (i = 0; i < length; i++) { |
---|
| 608 | tmp = 0.; |
---|
| 609 | for (j = i; j < length; j++) { |
---|
| 610 | tmp += data[j - i] * data[j]; |
---|
[ade9afe] | 611 | } |
---|
[8e5c051] | 612 | acf[i] = tmp / (smpl_t) (length - i); |
---|
[ade9afe] | 613 | } |
---|
[a0fd4e4] | 614 | } |
---|
| 615 | |
---|
[eb7f743] | 616 | void |
---|
| 617 | aubio_cleanup (void) |
---|
| 618 | { |
---|
[729a3c0] | 619 | #ifdef HAVE_FFTW3F |
---|
[eb7f743] | 620 | fftwf_cleanup (); |
---|
[729a3c0] | 621 | #else |
---|
| 622 | #ifdef HAVE_FFTW3 |
---|
| 623 | fftw_cleanup (); |
---|
[714380d] | 624 | #endif |
---|
| 625 | #endif |
---|
| 626 | } |
---|