[7524d0b] | 1 | /* |
---|
[e6a78ea] | 2 | Copyright (C) 2006-2009 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" |
---|
| 26 | #include "onset/peakpick.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 */ |
---|
[31907fd] | 33 | aubio_specdesc_t * od; /**< onset detection */ |
---|
[8766cb6] | 34 | aubio_peakpicker_t * pp; /**< peak picker */ |
---|
[989bf7f] | 35 | cvec_t * fftgrain; /**< phase vocoder output */ |
---|
| 36 | fvec_t * of; /**< onset detection function */ |
---|
| 37 | smpl_t threshold; /**< onset peak picking threshold */ |
---|
| 38 | smpl_t silence; /**< silence threhsold */ |
---|
| 39 | uint_t minioi; /**< minimum inter onset interval */ |
---|
[56ef7e1] | 40 | fvec_t * wasonset; /**< number of frames since last onset */ |
---|
[e4f142c] | 41 | uint_t samplerate; /**< sampling rate of the input signal */ |
---|
[af4aeca] | 42 | uint_t hop_size; /**< number of samples between two runs */ |
---|
[7524d0b] | 43 | }; |
---|
| 44 | |
---|
| 45 | /* execute onset detection function on iput buffer */ |
---|
[a72f3f1] | 46 | void aubio_onset_do (aubio_onset_t *o, fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 47 | { |
---|
[56ef7e1] | 48 | smpl_t isonset = 0; |
---|
| 49 | smpl_t wasonset = 0; |
---|
| 50 | uint_t i; |
---|
[7524d0b] | 51 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[31907fd] | 52 | aubio_specdesc_do (o->od,o->fftgrain, o->of); |
---|
[7524d0b] | 53 | /*if (usedoubled) { |
---|
[31907fd] | 54 | aubio_specdesc_do (o2,fftgrain, onset2); |
---|
[7524d0b] | 55 | onset->data[0][0] *= onset2->data[0][0]; |
---|
| 56 | }*/ |
---|
[56ef7e1] | 57 | aubio_peakpicker_do(o->pp, o->of, onset); |
---|
| 58 | for (i = 0; i < input->channels; i++) { |
---|
| 59 | isonset = onset->data[i][0]; |
---|
| 60 | wasonset = o->wasonset->data[i][0]; |
---|
[0f6f2e6] | 61 | if (isonset > 0.) { |
---|
[7524d0b] | 62 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
| 63 | isonset = 0; |
---|
| 64 | wasonset++; |
---|
| 65 | } else { |
---|
| 66 | if (wasonset > o->minioi) { |
---|
| 67 | wasonset = 0; |
---|
| 68 | } else { |
---|
| 69 | isonset = 0; |
---|
| 70 | wasonset++; |
---|
| 71 | } |
---|
| 72 | } |
---|
| 73 | } else { |
---|
| 74 | wasonset++; |
---|
| 75 | } |
---|
[56ef7e1] | 76 | o->wasonset->data[i][0] = wasonset; |
---|
| 77 | onset->data[i][0] = isonset; |
---|
| 78 | } |
---|
[7524d0b] | 79 | return; |
---|
| 80 | } |
---|
| 81 | |
---|
[6338636] | 82 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 83 | o->silence = silence; |
---|
[6338636] | 84 | return AUBIO_OK; |
---|
[7524d0b] | 85 | } |
---|
| 86 | |
---|
[6338636] | 87 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[7524d0b] | 88 | o->threshold = threshold; |
---|
| 89 | aubio_peakpicker_set_threshold(o->pp, o->threshold); |
---|
[6338636] | 90 | return AUBIO_OK; |
---|
[7524d0b] | 91 | } |
---|
| 92 | |
---|
[6338636] | 93 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[0bbdbfd] | 94 | o->minioi = FLOOR(minioi / 1000. * o->samplerate / o->hop_size); |
---|
[6338636] | 95 | return AUBIO_OK; |
---|
[7524d0b] | 96 | } |
---|
| 97 | |
---|
| 98 | /* Allocate memory for an onset detection */ |
---|
[b4f5967] | 99 | aubio_onset_t * new_aubio_onset (char_t * onset_mode, |
---|
[e4f142c] | 100 | uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate) |
---|
[7524d0b] | 101 | { |
---|
| 102 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
| 103 | /** set some default parameter */ |
---|
| 104 | o->threshold = 0.3; |
---|
| 105 | o->minioi = 4; |
---|
| 106 | o->silence = -70; |
---|
[56ef7e1] | 107 | o->wasonset = new_fvec(1, channels); |
---|
[e4f142c] | 108 | o->samplerate = samplerate; |
---|
[af4aeca] | 109 | o->hop_size = hop_size; |
---|
[7524d0b] | 110 | o->pv = new_aubio_pvoc(buf_size, hop_size, channels); |
---|
[56ef7e1] | 111 | o->pp = new_aubio_peakpicker(channels); |
---|
| 112 | aubio_peakpicker_set_threshold (o->pp, o->threshold); |
---|
[31907fd] | 113 | o->od = new_aubio_specdesc(onset_mode,buf_size,channels); |
---|
[7524d0b] | 114 | o->fftgrain = new_cvec(buf_size,channels); |
---|
| 115 | o->of = new_fvec(1, channels); |
---|
| 116 | /*if (usedoubled) { |
---|
[31907fd] | 117 | o2 = new_aubio_specdesc(onset_type2,buffer_size,channels); |
---|
[7524d0b] | 118 | onset2 = new_fvec(1 , channels); |
---|
| 119 | }*/ |
---|
| 120 | return o; |
---|
| 121 | } |
---|
| 122 | |
---|
| 123 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 124 | { |
---|
[31907fd] | 125 | del_aubio_specdesc(o->od); |
---|
[7524d0b] | 126 | del_aubio_peakpicker(o->pp); |
---|
| 127 | del_aubio_pvoc(o->pv); |
---|
| 128 | del_fvec(o->of); |
---|
[56ef7e1] | 129 | del_fvec(o->wasonset); |
---|
[7524d0b] | 130 | del_cvec(o->fftgrain); |
---|
| 131 | AUBIO_FREE(o); |
---|
| 132 | } |
---|