[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 threshold; /**< onset peak picking threshold */ |
---|
| 38 | smpl_t silence; /**< silence threhsold */ |
---|
| 39 | uint_t minioi; /**< minimum inter onset interval */ |
---|
[f5e0a54] | 40 | uint_t delay; /**< constant delay, in samples, removed from detected onset times */ |
---|
[e4f142c] | 41 | uint_t samplerate; /**< sampling rate of the input signal */ |
---|
[f5e0a54] | 42 | uint_t hop_size; /**< number of samples between two runs */ |
---|
| 43 | |
---|
| 44 | uint_t total_frames; /**< total number of frames processed since the beginning */ |
---|
| 45 | uint_t last_onset; /**< last detected onset location, in frames */ |
---|
[7524d0b] | 46 | }; |
---|
| 47 | |
---|
| 48 | /* execute onset detection function on iput buffer */ |
---|
[a72f3f1] | 49 | void aubio_onset_do (aubio_onset_t *o, fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 50 | { |
---|
[56ef7e1] | 51 | smpl_t isonset = 0; |
---|
[7524d0b] | 52 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[df53936] | 53 | aubio_specdesc_do (o->od, o->fftgrain, o->desc); |
---|
| 54 | aubio_peakpicker_do(o->pp, o->desc, onset); |
---|
[0b9a02a] | 55 | isonset = onset->data[0]; |
---|
[0f6f2e6] | 56 | if (isonset > 0.) { |
---|
[7524d0b] | 57 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
[df53936] | 58 | //AUBIO_DBG ("silent onset, not marking as onset\n"); |
---|
[7524d0b] | 59 | isonset = 0; |
---|
| 60 | } else { |
---|
[8b884ef] | 61 | uint_t new_onset = o->total_frames + (uint_t)ROUND(isonset * o->hop_size); |
---|
[35f73b8c] | 62 | if (o->last_onset + o->minioi < new_onset) { |
---|
[df53936] | 63 | //AUBIO_DBG ("accepted detection, marking as onset\n"); |
---|
[35f73b8c] | 64 | o->last_onset = new_onset; |
---|
[7524d0b] | 65 | } else { |
---|
[df53936] | 66 | //AUBIO_DBG ("doubled onset, not marking as onset\n"); |
---|
[7524d0b] | 67 | isonset = 0; |
---|
| 68 | } |
---|
| 69 | } |
---|
| 70 | } else { |
---|
[35f73b8c] | 71 | // we are at the beginning of the file, and we don't find silence |
---|
| 72 | if (o->total_frames == 0 && aubio_silence_detection(input, o->silence) == 0) { |
---|
| 73 | //AUBIO_DBG ("beginning of file is not silent, marking as onset\n"); |
---|
[f5e0a54] | 74 | isonset = o->delay / o->hop_size; |
---|
| 75 | o->last_onset = o->delay; |
---|
[376946a] | 76 | } |
---|
[7524d0b] | 77 | } |
---|
[0b9a02a] | 78 | onset->data[0] = isonset; |
---|
[f5e0a54] | 79 | o->total_frames += o->hop_size; |
---|
[7524d0b] | 80 | return; |
---|
| 81 | } |
---|
| 82 | |
---|
[8b884ef] | 83 | uint_t aubio_onset_get_last (aubio_onset_t *o) |
---|
[f5e0a54] | 84 | { |
---|
| 85 | return o->last_onset - o->delay; |
---|
| 86 | } |
---|
| 87 | |
---|
[8b884ef] | 88 | smpl_t aubio_onset_get_last_s (aubio_onset_t *o) |
---|
[f5e0a54] | 89 | { |
---|
[8b884ef] | 90 | return aubio_onset_get_last (o) / (smpl_t) (o->samplerate); |
---|
[f5e0a54] | 91 | } |
---|
| 92 | |
---|
[8b884ef] | 93 | smpl_t aubio_onset_get_last_ms (aubio_onset_t *o) |
---|
[f5e0a54] | 94 | { |
---|
[47e067b] | 95 | return aubio_onset_get_last_s (o) * 1000.; |
---|
[f5e0a54] | 96 | } |
---|
| 97 | |
---|
[6338636] | 98 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 99 | o->silence = silence; |
---|
[6338636] | 100 | return AUBIO_OK; |
---|
[7524d0b] | 101 | } |
---|
| 102 | |
---|
[6338636] | 103 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[7524d0b] | 104 | o->threshold = threshold; |
---|
| 105 | aubio_peakpicker_set_threshold(o->pp, o->threshold); |
---|
[6338636] | 106 | return AUBIO_OK; |
---|
[7524d0b] | 107 | } |
---|
| 108 | |
---|
[6338636] | 109 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[35f73b8c] | 110 | o->minioi = minioi; |
---|
[6338636] | 111 | return AUBIO_OK; |
---|
[7524d0b] | 112 | } |
---|
| 113 | |
---|
[f5e0a54] | 114 | uint_t aubio_onset_get_minioi(aubio_onset_t * o) { |
---|
| 115 | return o->minioi; |
---|
| 116 | } |
---|
| 117 | |
---|
[35f73b8c] | 118 | uint_t aubio_onset_set_minioi_s(aubio_onset_t * o, smpl_t minioi) { |
---|
| 119 | return aubio_onset_set_minioi (o, minioi * o->samplerate); |
---|
| 120 | } |
---|
| 121 | |
---|
| 122 | smpl_t aubio_onset_get_minioi_s(aubio_onset_t * o) { |
---|
| 123 | return aubio_onset_get_minioi (o) / (smpl_t) o->samplerate; |
---|
| 124 | } |
---|
| 125 | |
---|
| 126 | uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi) { |
---|
| 127 | return aubio_onset_set_minioi_s (o, minioi / 1000.); |
---|
| 128 | } |
---|
| 129 | |
---|
| 130 | smpl_t aubio_onset_get_minioi_ms(aubio_onset_t * o) { |
---|
| 131 | return aubio_onset_get_minioi_s (o) * 1000.; |
---|
| 132 | } |
---|
| 133 | |
---|
[f5e0a54] | 134 | uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay) { |
---|
| 135 | o->delay = delay; |
---|
| 136 | return AUBIO_OK; |
---|
| 137 | } |
---|
| 138 | |
---|
| 139 | uint_t aubio_onset_get_delay(aubio_onset_t * o) { |
---|
| 140 | return o->delay; |
---|
| 141 | } |
---|
| 142 | |
---|
| 143 | uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay) { |
---|
| 144 | return aubio_onset_set_delay (o, delay * o->samplerate); |
---|
| 145 | } |
---|
| 146 | |
---|
| 147 | smpl_t aubio_onset_get_delay_s(aubio_onset_t * o) { |
---|
| 148 | return aubio_onset_get_delay (o) / (smpl_t) o->samplerate; |
---|
| 149 | } |
---|
| 150 | |
---|
| 151 | uint_t aubio_onset_set_delay_ms(aubio_onset_t * o, smpl_t delay) { |
---|
| 152 | return aubio_onset_set_delay_s (o, delay / 1000.); |
---|
| 153 | } |
---|
| 154 | |
---|
| 155 | smpl_t aubio_onset_get_delay_ms(aubio_onset_t * o) { |
---|
| 156 | return aubio_onset_get_delay_s (o) * 1000.; |
---|
| 157 | } |
---|
| 158 | |
---|
[35f73b8c] | 159 | smpl_t aubio_onset_get_descriptor(aubio_onset_t * o) { |
---|
[df53936] | 160 | return o->desc->data[0]; |
---|
[35f73b8c] | 161 | } |
---|
| 162 | |
---|
| 163 | smpl_t aubio_onset_get_thresholded_descriptor(aubio_onset_t * o) { |
---|
| 164 | fvec_t * thresholded = aubio_peakpicker_get_thresholded_input(o->pp); |
---|
| 165 | return thresholded->data[0]; |
---|
| 166 | } |
---|
| 167 | |
---|
[7524d0b] | 168 | /* Allocate memory for an onset detection */ |
---|
[b4f5967] | 169 | aubio_onset_t * new_aubio_onset (char_t * onset_mode, |
---|
[0b9a02a] | 170 | uint_t buf_size, uint_t hop_size, uint_t samplerate) |
---|
[7524d0b] | 171 | { |
---|
| 172 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
| 173 | /** set some default parameter */ |
---|
[35f73b8c] | 174 | o->samplerate = samplerate; |
---|
| 175 | o->hop_size = hop_size; |
---|
[f5e0a54] | 176 | o->last_onset = 0; |
---|
[7524d0b] | 177 | o->threshold = 0.3; |
---|
[f5e0a54] | 178 | o->delay = 4.3 * hop_size; |
---|
[35f73b8c] | 179 | o->minioi = 5 * hop_size; |
---|
[7524d0b] | 180 | o->silence = -70; |
---|
[f5e0a54] | 181 | o->total_frames = 0; |
---|
[35f73b8c] | 182 | o->pv = new_aubio_pvoc(buf_size, o->hop_size); |
---|
[0b9a02a] | 183 | o->pp = new_aubio_peakpicker(); |
---|
[56ef7e1] | 184 | aubio_peakpicker_set_threshold (o->pp, o->threshold); |
---|
[0b9a02a] | 185 | o->od = new_aubio_specdesc(onset_mode,buf_size); |
---|
| 186 | o->fftgrain = new_cvec(buf_size); |
---|
[df53936] | 187 | o->desc = new_fvec(1); |
---|
[7524d0b] | 188 | return o; |
---|
| 189 | } |
---|
| 190 | |
---|
| 191 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 192 | { |
---|
[31907fd] | 193 | del_aubio_specdesc(o->od); |
---|
[7524d0b] | 194 | del_aubio_peakpicker(o->pp); |
---|
| 195 | del_aubio_pvoc(o->pv); |
---|
[df53936] | 196 | del_fvec(o->desc); |
---|
[7524d0b] | 197 | del_cvec(o->fftgrain); |
---|
| 198 | AUBIO_FREE(o); |
---|
| 199 | } |
---|