[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 | |
---|
| 49 | uint_t apply_adaptive_whitening; |
---|
| 50 | aubio_spectral_whitening_t *spectral_whitening; |
---|
[7524d0b] | 51 | }; |
---|
| 52 | |
---|
| 53 | /* execute onset detection function on iput buffer */ |
---|
[00819aa] | 54 | void aubio_onset_do (aubio_onset_t *o, const fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 55 | { |
---|
[56ef7e1] | 56 | smpl_t isonset = 0; |
---|
[7524d0b] | 57 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[9f060d1] | 58 | /* |
---|
| 59 | if (apply_filtering) { |
---|
| 60 | } |
---|
| 61 | if (apply_compression) { |
---|
| 62 | } |
---|
| 63 | */ |
---|
| 64 | if (o->apply_adaptive_whitening) { |
---|
| 65 | aubio_spectral_whitening_do(o->spectral_whitening, o->fftgrain); |
---|
| 66 | } |
---|
[df53936] | 67 | aubio_specdesc_do (o->od, o->fftgrain, o->desc); |
---|
| 68 | aubio_peakpicker_do(o->pp, o->desc, onset); |
---|
[0b9a02a] | 69 | isonset = onset->data[0]; |
---|
[0f6f2e6] | 70 | if (isonset > 0.) { |
---|
[7524d0b] | 71 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
[df53936] | 72 | //AUBIO_DBG ("silent onset, not marking as onset\n"); |
---|
[7524d0b] | 73 | isonset = 0; |
---|
| 74 | } else { |
---|
[8b884ef] | 75 | uint_t new_onset = o->total_frames + (uint_t)ROUND(isonset * o->hop_size); |
---|
[35f73b8c] | 76 | if (o->last_onset + o->minioi < new_onset) { |
---|
[df53936] | 77 | //AUBIO_DBG ("accepted detection, marking as onset\n"); |
---|
[35f73b8c] | 78 | o->last_onset = new_onset; |
---|
[7524d0b] | 79 | } else { |
---|
[df53936] | 80 | //AUBIO_DBG ("doubled onset, not marking as onset\n"); |
---|
[7524d0b] | 81 | isonset = 0; |
---|
| 82 | } |
---|
| 83 | } |
---|
| 84 | } else { |
---|
[763a7f1] | 85 | // we are at the beginning of the file |
---|
| 86 | if (o->total_frames <= o->delay) { |
---|
| 87 | // and we don't find silence |
---|
| 88 | if (aubio_silence_detection(input, o->silence) == 0) { |
---|
| 89 | uint_t new_onset = o->total_frames; |
---|
| 90 | if (o->total_frames == 0 || o->last_onset + o->minioi < new_onset) { |
---|
| 91 | isonset = o->delay / o->hop_size; |
---|
| 92 | o->last_onset = o->total_frames + o->delay; |
---|
| 93 | } |
---|
| 94 | } |
---|
[376946a] | 95 | } |
---|
[7524d0b] | 96 | } |
---|
[0b9a02a] | 97 | onset->data[0] = isonset; |
---|
[f5e0a54] | 98 | o->total_frames += o->hop_size; |
---|
[7524d0b] | 99 | return; |
---|
| 100 | } |
---|
| 101 | |
---|
[00819aa] | 102 | uint_t aubio_onset_get_last (const aubio_onset_t *o) |
---|
[f5e0a54] | 103 | { |
---|
| 104 | return o->last_onset - o->delay; |
---|
| 105 | } |
---|
| 106 | |
---|
[00819aa] | 107 | smpl_t aubio_onset_get_last_s (const aubio_onset_t *o) |
---|
[f5e0a54] | 108 | { |
---|
[8b884ef] | 109 | return aubio_onset_get_last (o) / (smpl_t) (o->samplerate); |
---|
[f5e0a54] | 110 | } |
---|
| 111 | |
---|
[00819aa] | 112 | smpl_t aubio_onset_get_last_ms (const aubio_onset_t *o) |
---|
[f5e0a54] | 113 | { |
---|
[47e067b] | 114 | return aubio_onset_get_last_s (o) * 1000.; |
---|
[f5e0a54] | 115 | } |
---|
| 116 | |
---|
[7ac374d] | 117 | uint_t aubio_onset_set_adaptive_whitening (aubio_onset_t *o, uint_t apply_adaptive_whitening) |
---|
| 118 | { |
---|
| 119 | o->apply_adaptive_whitening = apply_adaptive_whitening; |
---|
| 120 | return AUBIO_OK; |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | uint_t aubio_onset_get_adaptive_whitening (aubio_onset_t *o) |
---|
| 124 | { |
---|
| 125 | return o->apply_adaptive_whitening; |
---|
| 126 | } |
---|
| 127 | |
---|
[6338636] | 128 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 129 | o->silence = silence; |
---|
[6338636] | 130 | return AUBIO_OK; |
---|
[7524d0b] | 131 | } |
---|
| 132 | |
---|
[00819aa] | 133 | smpl_t aubio_onset_get_silence(const aubio_onset_t * o) { |
---|
[96a96d7] | 134 | return o->silence; |
---|
| 135 | } |
---|
| 136 | |
---|
[6338636] | 137 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[8f14c6e] | 138 | aubio_peakpicker_set_threshold(o->pp, threshold); |
---|
[6338636] | 139 | return AUBIO_OK; |
---|
[7524d0b] | 140 | } |
---|
| 141 | |
---|
[00819aa] | 142 | smpl_t aubio_onset_get_threshold(const aubio_onset_t * o) { |
---|
[10b11d6] | 143 | return aubio_peakpicker_get_threshold(o->pp); |
---|
| 144 | } |
---|
| 145 | |
---|
[6338636] | 146 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[35f73b8c] | 147 | o->minioi = minioi; |
---|
[6338636] | 148 | return AUBIO_OK; |
---|
[7524d0b] | 149 | } |
---|
| 150 | |
---|
[00819aa] | 151 | uint_t aubio_onset_get_minioi(const aubio_onset_t * o) { |
---|
[f5e0a54] | 152 | return o->minioi; |
---|
| 153 | } |
---|
| 154 | |
---|
[35f73b8c] | 155 | uint_t aubio_onset_set_minioi_s(aubio_onset_t * o, smpl_t minioi) { |
---|
[44a3e5e] | 156 | return aubio_onset_set_minioi (o, (uint_t)ROUND(minioi * o->samplerate)); |
---|
[35f73b8c] | 157 | } |
---|
| 158 | |
---|
[00819aa] | 159 | smpl_t aubio_onset_get_minioi_s(const aubio_onset_t * o) { |
---|
[35f73b8c] | 160 | return aubio_onset_get_minioi (o) / (smpl_t) o->samplerate; |
---|
| 161 | } |
---|
| 162 | |
---|
| 163 | uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi) { |
---|
| 164 | return aubio_onset_set_minioi_s (o, minioi / 1000.); |
---|
| 165 | } |
---|
| 166 | |
---|
[00819aa] | 167 | smpl_t aubio_onset_get_minioi_ms(const aubio_onset_t * o) { |
---|
[35f73b8c] | 168 | return aubio_onset_get_minioi_s (o) * 1000.; |
---|
| 169 | } |
---|
| 170 | |
---|
[f5e0a54] | 171 | uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay) { |
---|
| 172 | o->delay = delay; |
---|
| 173 | return AUBIO_OK; |
---|
| 174 | } |
---|
| 175 | |
---|
[00819aa] | 176 | uint_t aubio_onset_get_delay(const aubio_onset_t * o) { |
---|
[f5e0a54] | 177 | return o->delay; |
---|
| 178 | } |
---|
| 179 | |
---|
| 180 | uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay) { |
---|
| 181 | return aubio_onset_set_delay (o, delay * o->samplerate); |
---|
| 182 | } |
---|
| 183 | |
---|
[00819aa] | 184 | smpl_t aubio_onset_get_delay_s(const aubio_onset_t * o) { |
---|
[f5e0a54] | 185 | return aubio_onset_get_delay (o) / (smpl_t) o->samplerate; |
---|
| 186 | } |
---|
| 187 | |
---|
| 188 | uint_t aubio_onset_set_delay_ms(aubio_onset_t * o, smpl_t delay) { |
---|
| 189 | return aubio_onset_set_delay_s (o, delay / 1000.); |
---|
| 190 | } |
---|
| 191 | |
---|
[00819aa] | 192 | smpl_t aubio_onset_get_delay_ms(const aubio_onset_t * o) { |
---|
[f5e0a54] | 193 | return aubio_onset_get_delay_s (o) * 1000.; |
---|
| 194 | } |
---|
| 195 | |
---|
[00819aa] | 196 | smpl_t aubio_onset_get_descriptor(const aubio_onset_t * o) { |
---|
[df53936] | 197 | return o->desc->data[0]; |
---|
[35f73b8c] | 198 | } |
---|
| 199 | |
---|
[00819aa] | 200 | smpl_t aubio_onset_get_thresholded_descriptor(const aubio_onset_t * o) { |
---|
[35f73b8c] | 201 | fvec_t * thresholded = aubio_peakpicker_get_thresholded_input(o->pp); |
---|
| 202 | return thresholded->data[0]; |
---|
| 203 | } |
---|
| 204 | |
---|
[7524d0b] | 205 | /* Allocate memory for an onset detection */ |
---|
[00819aa] | 206 | aubio_onset_t * new_aubio_onset (const char_t * onset_mode, |
---|
[0b9a02a] | 207 | uint_t buf_size, uint_t hop_size, uint_t samplerate) |
---|
[7524d0b] | 208 | { |
---|
| 209 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
[892c369] | 210 | |
---|
| 211 | /* check parameters are valid */ |
---|
| 212 | if ((sint_t)hop_size < 1) { |
---|
| 213 | AUBIO_ERR("onset: got hop_size %d, but can not be < 1\n", hop_size); |
---|
| 214 | goto beach; |
---|
[d897aae] | 215 | } else if ((sint_t)buf_size < 2) { |
---|
| 216 | AUBIO_ERR("onset: got buffer_size %d, but can not be < 2\n", buf_size); |
---|
[892c369] | 217 | goto beach; |
---|
| 218 | } else if (buf_size < hop_size) { |
---|
[0ff1b40] | 219 | AUBIO_ERR("onset: hop size (%d) is larger than win size (%d)\n", hop_size, buf_size); |
---|
[892c369] | 220 | goto beach; |
---|
| 221 | } else if ((sint_t)samplerate < 1) { |
---|
| 222 | AUBIO_ERR("onset: samplerate (%d) can not be < 1\n", samplerate); |
---|
| 223 | goto beach; |
---|
| 224 | } |
---|
| 225 | |
---|
[8f14c6e] | 226 | /* store creation parameters */ |
---|
[35f73b8c] | 227 | o->samplerate = samplerate; |
---|
| 228 | o->hop_size = hop_size; |
---|
[8f14c6e] | 229 | |
---|
| 230 | /* allocate memory */ |
---|
[35f73b8c] | 231 | o->pv = new_aubio_pvoc(buf_size, o->hop_size); |
---|
[0b9a02a] | 232 | o->pp = new_aubio_peakpicker(); |
---|
| 233 | o->od = new_aubio_specdesc(onset_mode,buf_size); |
---|
[078dad8] | 234 | if (o->od == NULL) goto beach_specdesc; |
---|
[0b9a02a] | 235 | o->fftgrain = new_cvec(buf_size); |
---|
[df53936] | 236 | o->desc = new_fvec(1); |
---|
[8f14c6e] | 237 | |
---|
[9f060d1] | 238 | o->spectral_whitening = new_aubio_spectral_whitening(buf_size, hop_size, samplerate); |
---|
[65c352e] | 239 | |
---|
| 240 | aubio_onset_default_parameters (o, onset_mode); |
---|
[9f060d1] | 241 | |
---|
[8f14c6e] | 242 | /* initialize internal variables */ |
---|
| 243 | o->last_onset = 0; |
---|
| 244 | o->total_frames = 0; |
---|
[7524d0b] | 245 | return o; |
---|
[892c369] | 246 | |
---|
[078dad8] | 247 | beach_specdesc: |
---|
| 248 | del_aubio_peakpicker(o->pp); |
---|
| 249 | del_aubio_pvoc(o->pv); |
---|
[892c369] | 250 | beach: |
---|
| 251 | AUBIO_FREE(o); |
---|
| 252 | return NULL; |
---|
[7524d0b] | 253 | } |
---|
| 254 | |
---|
[2410d3d2] | 255 | void aubio_onset_default_parameters (aubio_onset_t * o, const char_t * onset_mode) |
---|
[65c352e] | 256 | { |
---|
| 257 | /* set some default parameter */ |
---|
| 258 | aubio_onset_set_threshold (o, 0.3); |
---|
| 259 | aubio_onset_set_delay (o, 4.3 * o->hop_size); |
---|
| 260 | aubio_onset_set_minioi_ms (o, 50.); |
---|
| 261 | aubio_onset_set_silence (o, -70.); |
---|
| 262 | aubio_onset_set_adaptive_whitening (o, 1); |
---|
| 263 | |
---|
| 264 | /* method specific optimisations */ |
---|
| 265 | if (strcmp (onset_mode, "energy") == 0) { |
---|
[00d0275] | 266 | } else if (strcmp (onset_mode, "hfc") == 0 || strcmp (onset_mode, "default") == 0) { |
---|
[65c352e] | 267 | aubio_onset_set_adaptive_whitening (o, 0); |
---|
| 268 | } else if (strcmp (onset_mode, "complexdomain") == 0 |
---|
| 269 | || strcmp (onset_mode, "complex") == 0) { |
---|
| 270 | aubio_onset_set_delay (o, 4.6 * o->hop_size); |
---|
| 271 | aubio_onset_set_threshold (o, 0.15); |
---|
| 272 | } else if (strcmp (onset_mode, "phase") == 0) { |
---|
| 273 | aubio_onset_set_adaptive_whitening (o, 0); |
---|
| 274 | } else if (strcmp (onset_mode, "mkl") == 0) { |
---|
| 275 | aubio_onset_set_threshold (o, 0.05); |
---|
| 276 | } else if (strcmp (onset_mode, "kl") == 0) { |
---|
| 277 | aubio_onset_set_threshold (o, 0.35); |
---|
| 278 | } else if (strcmp (onset_mode, "specflux") == 0) { |
---|
| 279 | aubio_onset_set_threshold (o, 0.4); |
---|
| 280 | } else if (strcmp (onset_mode, "specdiff") == 0) { |
---|
| 281 | } else { |
---|
[b75f890] | 282 | AUBIO_WRN("onset: unknown spectral descriptor type %s, " |
---|
[65c352e] | 283 | "using default parameters.\n", onset_mode); |
---|
| 284 | } |
---|
| 285 | } |
---|
| 286 | |
---|
[7524d0b] | 287 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 288 | { |
---|
[9f060d1] | 289 | del_aubio_spectral_whitening(o->spectral_whitening); |
---|
[31907fd] | 290 | del_aubio_specdesc(o->od); |
---|
[7524d0b] | 291 | del_aubio_peakpicker(o->pp); |
---|
| 292 | del_aubio_pvoc(o->pv); |
---|
[df53936] | 293 | del_fvec(o->desc); |
---|
[7524d0b] | 294 | del_cvec(o->fftgrain); |
---|
| 295 | AUBIO_FREE(o); |
---|
| 296 | } |
---|