[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" |
---|
[3e17aed] | 26 | #include "onset/peakpicker.h" |
---|
[7524d0b] | 27 | #include "mathutils.h" |
---|
[32d6958] | 28 | #include "onset/onset.h" |
---|
[7524d0b] | 29 | |
---|
[989bf7f] | 30 | /** structure to store object state */ |
---|
[7524d0b] | 31 | struct _aubio_onset_t { |
---|
[989bf7f] | 32 | aubio_pvoc_t * pv; /**< phase vocoder */ |
---|
[df53936] | 33 | aubio_specdesc_t * od; /**< spectral descriptor */ |
---|
[8766cb6] | 34 | aubio_peakpicker_t * pp; /**< peak picker */ |
---|
[989bf7f] | 35 | cvec_t * fftgrain; /**< phase vocoder output */ |
---|
[df53936] | 36 | fvec_t * desc; /**< spectral description */ |
---|
[989bf7f] | 37 | smpl_t silence; /**< silence threhsold */ |
---|
| 38 | uint_t minioi; /**< minimum inter onset interval */ |
---|
[f5e0a54] | 39 | uint_t delay; /**< constant delay, in samples, removed from detected onset times */ |
---|
[e4f142c] | 40 | uint_t samplerate; /**< sampling rate of the input signal */ |
---|
[f5e0a54] | 41 | uint_t hop_size; /**< number of samples between two runs */ |
---|
| 42 | |
---|
| 43 | uint_t total_frames; /**< total number of frames processed since the beginning */ |
---|
| 44 | uint_t last_onset; /**< last detected onset location, in frames */ |
---|
[7524d0b] | 45 | }; |
---|
| 46 | |
---|
| 47 | /* execute onset detection function on iput buffer */ |
---|
[00819aa] | 48 | void aubio_onset_do (aubio_onset_t *o, const fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 49 | { |
---|
[56ef7e1] | 50 | smpl_t isonset = 0; |
---|
[7524d0b] | 51 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[df53936] | 52 | aubio_specdesc_do (o->od, o->fftgrain, o->desc); |
---|
| 53 | aubio_peakpicker_do(o->pp, o->desc, onset); |
---|
[0b9a02a] | 54 | isonset = onset->data[0]; |
---|
[0f6f2e6] | 55 | if (isonset > 0.) { |
---|
[7524d0b] | 56 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
[df53936] | 57 | //AUBIO_DBG ("silent onset, not marking as onset\n"); |
---|
[7524d0b] | 58 | isonset = 0; |
---|
| 59 | } else { |
---|
[8b884ef] | 60 | uint_t new_onset = o->total_frames + (uint_t)ROUND(isonset * o->hop_size); |
---|
[35f73b8c] | 61 | if (o->last_onset + o->minioi < new_onset) { |
---|
[df53936] | 62 | //AUBIO_DBG ("accepted detection, marking as onset\n"); |
---|
[35f73b8c] | 63 | o->last_onset = new_onset; |
---|
[7524d0b] | 64 | } else { |
---|
[df53936] | 65 | //AUBIO_DBG ("doubled onset, not marking as onset\n"); |
---|
[7524d0b] | 66 | isonset = 0; |
---|
| 67 | } |
---|
| 68 | } |
---|
| 69 | } else { |
---|
[763a7f1] | 70 | // we are at the beginning of the file |
---|
| 71 | if (o->total_frames <= o->delay) { |
---|
| 72 | // and we don't find silence |
---|
| 73 | if (aubio_silence_detection(input, o->silence) == 0) { |
---|
| 74 | uint_t new_onset = o->total_frames; |
---|
| 75 | if (o->total_frames == 0 || o->last_onset + o->minioi < new_onset) { |
---|
| 76 | isonset = o->delay / o->hop_size; |
---|
| 77 | o->last_onset = o->total_frames + o->delay; |
---|
| 78 | } |
---|
| 79 | } |
---|
[376946a] | 80 | } |
---|
[7524d0b] | 81 | } |
---|
[0b9a02a] | 82 | onset->data[0] = isonset; |
---|
[f5e0a54] | 83 | o->total_frames += o->hop_size; |
---|
[7524d0b] | 84 | return; |
---|
| 85 | } |
---|
| 86 | |
---|
[00819aa] | 87 | uint_t aubio_onset_get_last (const aubio_onset_t *o) |
---|
[f5e0a54] | 88 | { |
---|
| 89 | return o->last_onset - o->delay; |
---|
| 90 | } |
---|
| 91 | |
---|
[00819aa] | 92 | smpl_t aubio_onset_get_last_s (const aubio_onset_t *o) |
---|
[f5e0a54] | 93 | { |
---|
[8b884ef] | 94 | return aubio_onset_get_last (o) / (smpl_t) (o->samplerate); |
---|
[f5e0a54] | 95 | } |
---|
| 96 | |
---|
[00819aa] | 97 | smpl_t aubio_onset_get_last_ms (const aubio_onset_t *o) |
---|
[f5e0a54] | 98 | { |
---|
[47e067b] | 99 | return aubio_onset_get_last_s (o) * 1000.; |
---|
[f5e0a54] | 100 | } |
---|
| 101 | |
---|
[6338636] | 102 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 103 | o->silence = silence; |
---|
[6338636] | 104 | return AUBIO_OK; |
---|
[7524d0b] | 105 | } |
---|
| 106 | |
---|
[00819aa] | 107 | smpl_t aubio_onset_get_silence(const aubio_onset_t * o) { |
---|
[96a96d7] | 108 | return o->silence; |
---|
| 109 | } |
---|
| 110 | |
---|
[6338636] | 111 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[8f14c6e] | 112 | aubio_peakpicker_set_threshold(o->pp, threshold); |
---|
[6338636] | 113 | return AUBIO_OK; |
---|
[7524d0b] | 114 | } |
---|
| 115 | |
---|
[00819aa] | 116 | smpl_t aubio_onset_get_threshold(const aubio_onset_t * o) { |
---|
[10b11d6] | 117 | return aubio_peakpicker_get_threshold(o->pp); |
---|
| 118 | } |
---|
| 119 | |
---|
[6338636] | 120 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[35f73b8c] | 121 | o->minioi = minioi; |
---|
[6338636] | 122 | return AUBIO_OK; |
---|
[7524d0b] | 123 | } |
---|
| 124 | |
---|
[00819aa] | 125 | uint_t aubio_onset_get_minioi(const aubio_onset_t * o) { |
---|
[f5e0a54] | 126 | return o->minioi; |
---|
| 127 | } |
---|
| 128 | |
---|
[35f73b8c] | 129 | uint_t aubio_onset_set_minioi_s(aubio_onset_t * o, smpl_t minioi) { |
---|
[44a3e5e] | 130 | return aubio_onset_set_minioi (o, (uint_t)ROUND(minioi * o->samplerate)); |
---|
[35f73b8c] | 131 | } |
---|
| 132 | |
---|
[00819aa] | 133 | smpl_t aubio_onset_get_minioi_s(const aubio_onset_t * o) { |
---|
[35f73b8c] | 134 | return aubio_onset_get_minioi (o) / (smpl_t) o->samplerate; |
---|
| 135 | } |
---|
| 136 | |
---|
| 137 | uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi) { |
---|
| 138 | return aubio_onset_set_minioi_s (o, minioi / 1000.); |
---|
| 139 | } |
---|
| 140 | |
---|
[00819aa] | 141 | smpl_t aubio_onset_get_minioi_ms(const aubio_onset_t * o) { |
---|
[35f73b8c] | 142 | return aubio_onset_get_minioi_s (o) * 1000.; |
---|
| 143 | } |
---|
| 144 | |
---|
[f5e0a54] | 145 | uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay) { |
---|
| 146 | o->delay = delay; |
---|
| 147 | return AUBIO_OK; |
---|
| 148 | } |
---|
| 149 | |
---|
[00819aa] | 150 | uint_t aubio_onset_get_delay(const aubio_onset_t * o) { |
---|
[f5e0a54] | 151 | return o->delay; |
---|
| 152 | } |
---|
| 153 | |
---|
| 154 | uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay) { |
---|
| 155 | return aubio_onset_set_delay (o, delay * o->samplerate); |
---|
| 156 | } |
---|
| 157 | |
---|
[00819aa] | 158 | smpl_t aubio_onset_get_delay_s(const aubio_onset_t * o) { |
---|
[f5e0a54] | 159 | return aubio_onset_get_delay (o) / (smpl_t) o->samplerate; |
---|
| 160 | } |
---|
| 161 | |
---|
| 162 | uint_t aubio_onset_set_delay_ms(aubio_onset_t * o, smpl_t delay) { |
---|
| 163 | return aubio_onset_set_delay_s (o, delay / 1000.); |
---|
| 164 | } |
---|
| 165 | |
---|
[00819aa] | 166 | smpl_t aubio_onset_get_delay_ms(const aubio_onset_t * o) { |
---|
[f5e0a54] | 167 | return aubio_onset_get_delay_s (o) * 1000.; |
---|
| 168 | } |
---|
| 169 | |
---|
[00819aa] | 170 | smpl_t aubio_onset_get_descriptor(const aubio_onset_t * o) { |
---|
[df53936] | 171 | return o->desc->data[0]; |
---|
[35f73b8c] | 172 | } |
---|
| 173 | |
---|
[00819aa] | 174 | smpl_t aubio_onset_get_thresholded_descriptor(const aubio_onset_t * o) { |
---|
[35f73b8c] | 175 | fvec_t * thresholded = aubio_peakpicker_get_thresholded_input(o->pp); |
---|
| 176 | return thresholded->data[0]; |
---|
| 177 | } |
---|
| 178 | |
---|
[7524d0b] | 179 | /* Allocate memory for an onset detection */ |
---|
[00819aa] | 180 | aubio_onset_t * new_aubio_onset (const char_t * onset_mode, |
---|
[0b9a02a] | 181 | uint_t buf_size, uint_t hop_size, uint_t samplerate) |
---|
[7524d0b] | 182 | { |
---|
| 183 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
[892c369] | 184 | |
---|
| 185 | /* check parameters are valid */ |
---|
| 186 | if ((sint_t)hop_size < 1) { |
---|
| 187 | AUBIO_ERR("onset: got hop_size %d, but can not be < 1\n", hop_size); |
---|
| 188 | goto beach; |
---|
[d897aae] | 189 | } else if ((sint_t)buf_size < 2) { |
---|
| 190 | AUBIO_ERR("onset: got buffer_size %d, but can not be < 2\n", buf_size); |
---|
[892c369] | 191 | goto beach; |
---|
| 192 | } else if (buf_size < hop_size) { |
---|
[0ff1b40] | 193 | AUBIO_ERR("onset: hop size (%d) is larger than win size (%d)\n", hop_size, buf_size); |
---|
[892c369] | 194 | goto beach; |
---|
| 195 | } else if ((sint_t)samplerate < 1) { |
---|
| 196 | AUBIO_ERR("onset: samplerate (%d) can not be < 1\n", samplerate); |
---|
| 197 | goto beach; |
---|
| 198 | } |
---|
| 199 | |
---|
[8f14c6e] | 200 | /* store creation parameters */ |
---|
[35f73b8c] | 201 | o->samplerate = samplerate; |
---|
| 202 | o->hop_size = hop_size; |
---|
[8f14c6e] | 203 | |
---|
| 204 | /* allocate memory */ |
---|
[35f73b8c] | 205 | o->pv = new_aubio_pvoc(buf_size, o->hop_size); |
---|
[0b9a02a] | 206 | o->pp = new_aubio_peakpicker(); |
---|
| 207 | o->od = new_aubio_specdesc(onset_mode,buf_size); |
---|
[078dad8] | 208 | if (o->od == NULL) goto beach_specdesc; |
---|
[0b9a02a] | 209 | o->fftgrain = new_cvec(buf_size); |
---|
[df53936] | 210 | o->desc = new_fvec(1); |
---|
[8f14c6e] | 211 | |
---|
| 212 | /* set some default parameter */ |
---|
| 213 | aubio_onset_set_threshold (o, 0.3); |
---|
[cbda661] | 214 | aubio_onset_set_delay(o, 4.3 * hop_size); |
---|
[8f14c6e] | 215 | aubio_onset_set_minioi_ms(o, 20.); |
---|
| 216 | aubio_onset_set_silence(o, -70.); |
---|
| 217 | |
---|
| 218 | /* initialize internal variables */ |
---|
| 219 | o->last_onset = 0; |
---|
| 220 | o->total_frames = 0; |
---|
[7524d0b] | 221 | return o; |
---|
[892c369] | 222 | |
---|
[078dad8] | 223 | beach_specdesc: |
---|
| 224 | del_aubio_peakpicker(o->pp); |
---|
| 225 | del_aubio_pvoc(o->pv); |
---|
[892c369] | 226 | beach: |
---|
| 227 | AUBIO_FREE(o); |
---|
| 228 | return NULL; |
---|
[7524d0b] | 229 | } |
---|
| 230 | |
---|
| 231 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 232 | { |
---|
[31907fd] | 233 | del_aubio_specdesc(o->od); |
---|
[7524d0b] | 234 | del_aubio_peakpicker(o->pp); |
---|
| 235 | del_aubio_pvoc(o->pv); |
---|
[df53936] | 236 | del_fvec(o->desc); |
---|
[7524d0b] | 237 | del_cvec(o->fftgrain); |
---|
| 238 | AUBIO_FREE(o); |
---|
| 239 | } |
---|