[7524d0b] | 1 | /* |
---|
[df53936] | 2 | Copyright (C) 2006-2013 Paul Brossier <piem@aubio.org> |
---|
[7524d0b] | 3 | |
---|
[e6a78ea] | 4 | This file is part of aubio. |
---|
[7524d0b] | 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. |
---|
[7524d0b] | 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/>. |
---|
[7524d0b] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #include "aubio_priv.h" |
---|
[6c7d49b] | 22 | #include "fvec.h" |
---|
| 23 | #include "cvec.h" |
---|
[31907fd] | 24 | #include "spectral/specdesc.h" |
---|
[32d6958] | 25 | #include "spectral/phasevoc.h" |
---|
[9f060d1] | 26 | #include "spectral/awhitening.h" |
---|
[3e17aed] | 27 | #include "onset/peakpicker.h" |
---|
[7524d0b] | 28 | #include "mathutils.h" |
---|
[32d6958] | 29 | #include "onset/onset.h" |
---|
[7524d0b] | 30 | |
---|
[2410d3d2] | 31 | void aubio_onset_default_parameters (aubio_onset_t *o, const char_t * method); |
---|
[65c352e] | 32 | |
---|
[989bf7f] | 33 | /** structure to store object state */ |
---|
[7524d0b] | 34 | struct _aubio_onset_t { |
---|
[989bf7f] | 35 | aubio_pvoc_t * pv; /**< phase vocoder */ |
---|
[df53936] | 36 | aubio_specdesc_t * od; /**< spectral descriptor */ |
---|
[8766cb6] | 37 | aubio_peakpicker_t * pp; /**< peak picker */ |
---|
[989bf7f] | 38 | cvec_t * fftgrain; /**< phase vocoder output */ |
---|
[df53936] | 39 | fvec_t * desc; /**< spectral description */ |
---|
[989bf7f] | 40 | smpl_t silence; /**< silence threhsold */ |
---|
| 41 | uint_t minioi; /**< minimum inter onset interval */ |
---|
[f5e0a54] | 42 | uint_t delay; /**< constant delay, in samples, removed from detected onset times */ |
---|
[e4f142c] | 43 | uint_t samplerate; /**< sampling rate of the input signal */ |
---|
[f5e0a54] | 44 | uint_t hop_size; /**< number of samples between two runs */ |
---|
| 45 | |
---|
| 46 | uint_t total_frames; /**< total number of frames processed since the beginning */ |
---|
| 47 | uint_t last_onset; /**< last detected onset location, in frames */ |
---|
[9f060d1] | 48 | |
---|
[6352034] | 49 | uint_t apply_compression; |
---|
| 50 | smpl_t lambda_compression; |
---|
[40ed6a7] | 51 | uint_t apply_awhitening; /**< apply adaptive spectral whitening */ |
---|
[9f060d1] | 52 | aubio_spectral_whitening_t *spectral_whitening; |
---|
[7524d0b] | 53 | }; |
---|
| 54 | |
---|
| 55 | /* execute onset detection function on iput buffer */ |
---|
[00819aa] | 56 | void aubio_onset_do (aubio_onset_t *o, const fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 57 | { |
---|
[56ef7e1] | 58 | smpl_t isonset = 0; |
---|
[7524d0b] | 59 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[9f060d1] | 60 | /* |
---|
| 61 | if (apply_filtering) { |
---|
| 62 | } |
---|
| 63 | */ |
---|
[40ed6a7] | 64 | if (o->apply_awhitening) { |
---|
[9f060d1] | 65 | aubio_spectral_whitening_do(o->spectral_whitening, o->fftgrain); |
---|
| 66 | } |
---|
[6352034] | 67 | if (o->apply_compression) { |
---|
[40ed6a7] | 68 | cvec_logmag(o->fftgrain, o->lambda_compression); |
---|
[6352034] | 69 | } |
---|
[df53936] | 70 | aubio_specdesc_do (o->od, o->fftgrain, o->desc); |
---|
| 71 | aubio_peakpicker_do(o->pp, o->desc, onset); |
---|
[0b9a02a] | 72 | isonset = onset->data[0]; |
---|
[0f6f2e6] | 73 | if (isonset > 0.) { |
---|
[7524d0b] | 74 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
[df53936] | 75 | //AUBIO_DBG ("silent onset, not marking as onset\n"); |
---|
[7524d0b] | 76 | isonset = 0; |
---|
| 77 | } else { |
---|
[8b884ef] | 78 | uint_t new_onset = o->total_frames + (uint_t)ROUND(isonset * o->hop_size); |
---|
[35f73b8c] | 79 | if (o->last_onset + o->minioi < new_onset) { |
---|
[df53936] | 80 | //AUBIO_DBG ("accepted detection, marking as onset\n"); |
---|
[35f73b8c] | 81 | o->last_onset = new_onset; |
---|
[7524d0b] | 82 | } else { |
---|
[df53936] | 83 | //AUBIO_DBG ("doubled onset, not marking as onset\n"); |
---|
[7524d0b] | 84 | isonset = 0; |
---|
| 85 | } |
---|
| 86 | } |
---|
| 87 | } else { |
---|
[763a7f1] | 88 | // we are at the beginning of the file |
---|
| 89 | if (o->total_frames <= o->delay) { |
---|
| 90 | // and we don't find silence |
---|
| 91 | if (aubio_silence_detection(input, o->silence) == 0) { |
---|
| 92 | uint_t new_onset = o->total_frames; |
---|
| 93 | if (o->total_frames == 0 || o->last_onset + o->minioi < new_onset) { |
---|
| 94 | isonset = o->delay / o->hop_size; |
---|
| 95 | o->last_onset = o->total_frames + o->delay; |
---|
| 96 | } |
---|
| 97 | } |
---|
[376946a] | 98 | } |
---|
[7524d0b] | 99 | } |
---|
[0b9a02a] | 100 | onset->data[0] = isonset; |
---|
[f5e0a54] | 101 | o->total_frames += o->hop_size; |
---|
[7524d0b] | 102 | return; |
---|
| 103 | } |
---|
| 104 | |
---|
[00819aa] | 105 | uint_t aubio_onset_get_last (const aubio_onset_t *o) |
---|
[f5e0a54] | 106 | { |
---|
| 107 | return o->last_onset - o->delay; |
---|
| 108 | } |
---|
| 109 | |
---|
[00819aa] | 110 | smpl_t aubio_onset_get_last_s (const aubio_onset_t *o) |
---|
[f5e0a54] | 111 | { |
---|
[8b884ef] | 112 | return aubio_onset_get_last (o) / (smpl_t) (o->samplerate); |
---|
[f5e0a54] | 113 | } |
---|
| 114 | |
---|
[00819aa] | 115 | smpl_t aubio_onset_get_last_ms (const aubio_onset_t *o) |
---|
[f5e0a54] | 116 | { |
---|
[47e067b] | 117 | return aubio_onset_get_last_s (o) * 1000.; |
---|
[f5e0a54] | 118 | } |
---|
| 119 | |
---|
[40ed6a7] | 120 | uint_t aubio_onset_set_awhitening (aubio_onset_t *o, uint_t enable) |
---|
[7ac374d] | 121 | { |
---|
[40ed6a7] | 122 | o->apply_awhitening = enable == 1 ? 1 : 0; |
---|
[7ac374d] | 123 | return AUBIO_OK; |
---|
| 124 | } |
---|
| 125 | |
---|
[40ed6a7] | 126 | smpl_t aubio_onset_get_awhitening (aubio_onset_t *o) |
---|
[7ac374d] | 127 | { |
---|
[40ed6a7] | 128 | return o->apply_awhitening; |
---|
| 129 | } |
---|
| 130 | |
---|
| 131 | uint_t aubio_onset_set_logmag_compression (aubio_onset_t *o, smpl_t lambda) |
---|
| 132 | { |
---|
| 133 | if (lambda < 0.) { |
---|
| 134 | return AUBIO_FAIL; |
---|
| 135 | } |
---|
| 136 | o->lambda_compression = lambda; |
---|
| 137 | o->apply_compression = (o->lambda_compression > 0.) ? 1 : 0; |
---|
| 138 | return AUBIO_OK; |
---|
| 139 | } |
---|
| 140 | |
---|
| 141 | smpl_t aubio_onset_get_logmag_compression (aubio_onset_t *o) |
---|
| 142 | { |
---|
| 143 | return o->apply_compression ? o->lambda_compression : 0; |
---|
[7ac374d] | 144 | } |
---|
| 145 | |
---|
[6338636] | 146 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 147 | o->silence = silence; |
---|
[6338636] | 148 | return AUBIO_OK; |
---|
[7524d0b] | 149 | } |
---|
| 150 | |
---|
[00819aa] | 151 | smpl_t aubio_onset_get_silence(const aubio_onset_t * o) { |
---|
[96a96d7] | 152 | return o->silence; |
---|
| 153 | } |
---|
| 154 | |
---|
[6338636] | 155 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[8f14c6e] | 156 | aubio_peakpicker_set_threshold(o->pp, threshold); |
---|
[6338636] | 157 | return AUBIO_OK; |
---|
[7524d0b] | 158 | } |
---|
| 159 | |
---|
[00819aa] | 160 | smpl_t aubio_onset_get_threshold(const aubio_onset_t * o) { |
---|
[10b11d6] | 161 | return aubio_peakpicker_get_threshold(o->pp); |
---|
| 162 | } |
---|
| 163 | |
---|
[6338636] | 164 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[35f73b8c] | 165 | o->minioi = minioi; |
---|
[6338636] | 166 | return AUBIO_OK; |
---|
[7524d0b] | 167 | } |
---|
| 168 | |
---|
[00819aa] | 169 | uint_t aubio_onset_get_minioi(const aubio_onset_t * o) { |
---|
[f5e0a54] | 170 | return o->minioi; |
---|
| 171 | } |
---|
| 172 | |
---|
[35f73b8c] | 173 | uint_t aubio_onset_set_minioi_s(aubio_onset_t * o, smpl_t minioi) { |
---|
[44a3e5e] | 174 | return aubio_onset_set_minioi (o, (uint_t)ROUND(minioi * o->samplerate)); |
---|
[35f73b8c] | 175 | } |
---|
| 176 | |
---|
[00819aa] | 177 | smpl_t aubio_onset_get_minioi_s(const aubio_onset_t * o) { |
---|
[35f73b8c] | 178 | return aubio_onset_get_minioi (o) / (smpl_t) o->samplerate; |
---|
| 179 | } |
---|
| 180 | |
---|
| 181 | uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi) { |
---|
| 182 | return aubio_onset_set_minioi_s (o, minioi / 1000.); |
---|
| 183 | } |
---|
| 184 | |
---|
[00819aa] | 185 | smpl_t aubio_onset_get_minioi_ms(const aubio_onset_t * o) { |
---|
[35f73b8c] | 186 | return aubio_onset_get_minioi_s (o) * 1000.; |
---|
| 187 | } |
---|
| 188 | |
---|
[f5e0a54] | 189 | uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay) { |
---|
| 190 | o->delay = delay; |
---|
| 191 | return AUBIO_OK; |
---|
| 192 | } |
---|
| 193 | |
---|
[00819aa] | 194 | uint_t aubio_onset_get_delay(const aubio_onset_t * o) { |
---|
[f5e0a54] | 195 | return o->delay; |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay) { |
---|
| 199 | return aubio_onset_set_delay (o, delay * o->samplerate); |
---|
| 200 | } |
---|
| 201 | |
---|
[00819aa] | 202 | smpl_t aubio_onset_get_delay_s(const aubio_onset_t * o) { |
---|
[f5e0a54] | 203 | return aubio_onset_get_delay (o) / (smpl_t) o->samplerate; |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | uint_t aubio_onset_set_delay_ms(aubio_onset_t * o, smpl_t delay) { |
---|
| 207 | return aubio_onset_set_delay_s (o, delay / 1000.); |
---|
| 208 | } |
---|
| 209 | |
---|
[00819aa] | 210 | smpl_t aubio_onset_get_delay_ms(const aubio_onset_t * o) { |
---|
[f5e0a54] | 211 | return aubio_onset_get_delay_s (o) * 1000.; |
---|
| 212 | } |
---|
| 213 | |
---|
[00819aa] | 214 | smpl_t aubio_onset_get_descriptor(const aubio_onset_t * o) { |
---|
[df53936] | 215 | return o->desc->data[0]; |
---|
[35f73b8c] | 216 | } |
---|
| 217 | |
---|
[00819aa] | 218 | smpl_t aubio_onset_get_thresholded_descriptor(const aubio_onset_t * o) { |
---|
[35f73b8c] | 219 | fvec_t * thresholded = aubio_peakpicker_get_thresholded_input(o->pp); |
---|
| 220 | return thresholded->data[0]; |
---|
| 221 | } |
---|
| 222 | |
---|
[7524d0b] | 223 | /* Allocate memory for an onset detection */ |
---|
[00819aa] | 224 | aubio_onset_t * new_aubio_onset (const char_t * onset_mode, |
---|
[0b9a02a] | 225 | uint_t buf_size, uint_t hop_size, uint_t samplerate) |
---|
[7524d0b] | 226 | { |
---|
| 227 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
[892c369] | 228 | |
---|
| 229 | /* check parameters are valid */ |
---|
| 230 | if ((sint_t)hop_size < 1) { |
---|
| 231 | AUBIO_ERR("onset: got hop_size %d, but can not be < 1\n", hop_size); |
---|
| 232 | goto beach; |
---|
[d897aae] | 233 | } else if ((sint_t)buf_size < 2) { |
---|
| 234 | AUBIO_ERR("onset: got buffer_size %d, but can not be < 2\n", buf_size); |
---|
[892c369] | 235 | goto beach; |
---|
| 236 | } else if (buf_size < hop_size) { |
---|
[0ff1b40] | 237 | AUBIO_ERR("onset: hop size (%d) is larger than win size (%d)\n", hop_size, buf_size); |
---|
[892c369] | 238 | goto beach; |
---|
| 239 | } else if ((sint_t)samplerate < 1) { |
---|
| 240 | AUBIO_ERR("onset: samplerate (%d) can not be < 1\n", samplerate); |
---|
| 241 | goto beach; |
---|
| 242 | } |
---|
| 243 | |
---|
[8f14c6e] | 244 | /* store creation parameters */ |
---|
[35f73b8c] | 245 | o->samplerate = samplerate; |
---|
| 246 | o->hop_size = hop_size; |
---|
[8f14c6e] | 247 | |
---|
| 248 | /* allocate memory */ |
---|
[35f73b8c] | 249 | o->pv = new_aubio_pvoc(buf_size, o->hop_size); |
---|
[0b9a02a] | 250 | o->pp = new_aubio_peakpicker(); |
---|
| 251 | o->od = new_aubio_specdesc(onset_mode,buf_size); |
---|
[078dad8] | 252 | if (o->od == NULL) goto beach_specdesc; |
---|
[0b9a02a] | 253 | o->fftgrain = new_cvec(buf_size); |
---|
[df53936] | 254 | o->desc = new_fvec(1); |
---|
[9f060d1] | 255 | o->spectral_whitening = new_aubio_spectral_whitening(buf_size, hop_size, samplerate); |
---|
[65c352e] | 256 | |
---|
[8f14c6e] | 257 | /* initialize internal variables */ |
---|
[fa3edc6] | 258 | aubio_onset_set_default_parameters (o, onset_mode); |
---|
| 259 | |
---|
| 260 | aubio_onset_reset(o); |
---|
[7524d0b] | 261 | return o; |
---|
[892c369] | 262 | |
---|
[078dad8] | 263 | beach_specdesc: |
---|
| 264 | del_aubio_peakpicker(o->pp); |
---|
| 265 | del_aubio_pvoc(o->pv); |
---|
[892c369] | 266 | beach: |
---|
| 267 | AUBIO_FREE(o); |
---|
| 268 | return NULL; |
---|
[7524d0b] | 269 | } |
---|
| 270 | |
---|
[fa3edc6] | 271 | void aubio_onset_reset (aubio_onset_t *o) { |
---|
| 272 | o->last_onset = 0; |
---|
| 273 | o->total_frames = 0; |
---|
| 274 | } |
---|
| 275 | |
---|
| 276 | uint_t aubio_onset_set_default_parameters (aubio_onset_t * o, const char_t * onset_mode) |
---|
[65c352e] | 277 | { |
---|
[fa3edc6] | 278 | uint_t ret = AUBIO_OK; |
---|
[65c352e] | 279 | /* set some default parameter */ |
---|
| 280 | aubio_onset_set_threshold (o, 0.3); |
---|
| 281 | aubio_onset_set_delay (o, 4.3 * o->hop_size); |
---|
| 282 | aubio_onset_set_minioi_ms (o, 50.); |
---|
| 283 | aubio_onset_set_silence (o, -70.); |
---|
[40ed6a7] | 284 | // disable spectral whitening |
---|
| 285 | aubio_onset_set_awhitening (o, 0); |
---|
| 286 | // disable logarithmic magnitude |
---|
| 287 | aubio_onset_set_logmag_compression (o, 0.); |
---|
[65c352e] | 288 | |
---|
| 289 | /* method specific optimisations */ |
---|
| 290 | if (strcmp (onset_mode, "energy") == 0) { |
---|
[00d0275] | 291 | } else if (strcmp (onset_mode, "hfc") == 0 || strcmp (onset_mode, "default") == 0) { |
---|
[6352034] | 292 | aubio_onset_set_threshold (o, 0.058); |
---|
| 293 | o->apply_compression = 1; |
---|
| 294 | o->lambda_compression = 1.; |
---|
[65c352e] | 295 | aubio_onset_set_adaptive_whitening (o, 0); |
---|
| 296 | } else if (strcmp (onset_mode, "complexdomain") == 0 |
---|
| 297 | || strcmp (onset_mode, "complex") == 0) { |
---|
| 298 | aubio_onset_set_delay (o, 4.6 * o->hop_size); |
---|
| 299 | aubio_onset_set_threshold (o, 0.15); |
---|
[6352034] | 300 | o->apply_compression = 1; |
---|
| 301 | o->lambda_compression = 1.; |
---|
[65c352e] | 302 | } else if (strcmp (onset_mode, "phase") == 0) { |
---|
[6352034] | 303 | o->apply_compression = 0; |
---|
[65c352e] | 304 | aubio_onset_set_adaptive_whitening (o, 0); |
---|
| 305 | } else if (strcmp (onset_mode, "mkl") == 0) { |
---|
| 306 | aubio_onset_set_threshold (o, 0.05); |
---|
| 307 | } else if (strcmp (onset_mode, "kl") == 0) { |
---|
| 308 | aubio_onset_set_threshold (o, 0.35); |
---|
| 309 | } else if (strcmp (onset_mode, "specflux") == 0) { |
---|
| 310 | aubio_onset_set_threshold (o, 0.4); |
---|
| 311 | } else if (strcmp (onset_mode, "specdiff") == 0) { |
---|
| 312 | } else { |
---|
[b75f890] | 313 | AUBIO_WRN("onset: unknown spectral descriptor type %s, " |
---|
[65c352e] | 314 | "using default parameters.\n", onset_mode); |
---|
[fa3edc6] | 315 | ret = AUBIO_FAIL; |
---|
[65c352e] | 316 | } |
---|
[fa3edc6] | 317 | return ret; |
---|
[65c352e] | 318 | } |
---|
| 319 | |
---|
[7524d0b] | 320 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 321 | { |
---|
[9f060d1] | 322 | del_aubio_spectral_whitening(o->spectral_whitening); |
---|
[31907fd] | 323 | del_aubio_specdesc(o->od); |
---|
[7524d0b] | 324 | del_aubio_peakpicker(o->pp); |
---|
| 325 | del_aubio_pvoc(o->pv); |
---|
[df53936] | 326 | del_fvec(o->desc); |
---|
[7524d0b] | 327 | del_cvec(o->fftgrain); |
---|
| 328 | AUBIO_FREE(o); |
---|
| 329 | } |
---|