[7524d0b] | 1 | /* |
---|
| 2 | Copyright (C) 2006 Paul Brossier |
---|
| 3 | |
---|
| 4 | This program is free software; you can redistribute it and/or modify |
---|
| 5 | it under the terms of the GNU General Public License as published by |
---|
| 6 | the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | (at your option) any later version. |
---|
| 8 | |
---|
| 9 | This program is distributed in the hope that it will be useful, |
---|
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | GNU General Public License for more details. |
---|
| 13 | |
---|
| 14 | You should have received a copy of the GNU General Public License |
---|
| 15 | along with this program; if not, write to the Free Software |
---|
| 16 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 17 | |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | #include "aubio_priv.h" |
---|
[6c7d49b] | 21 | #include "fvec.h" |
---|
| 22 | #include "cvec.h" |
---|
[bcf38fe] | 23 | #include "onset/onsetdetection.h" |
---|
[32d6958] | 24 | #include "spectral/phasevoc.h" |
---|
| 25 | #include "onset/peakpick.h" |
---|
[7524d0b] | 26 | #include "mathutils.h" |
---|
[32d6958] | 27 | #include "onset/onset.h" |
---|
[7524d0b] | 28 | |
---|
[989bf7f] | 29 | /** structure to store object state */ |
---|
[7524d0b] | 30 | struct _aubio_onset_t { |
---|
[989bf7f] | 31 | aubio_pvoc_t * pv; /**< phase vocoder */ |
---|
| 32 | aubio_onsetdetection_t * od; /**< onset detection */ |
---|
[8766cb6] | 33 | aubio_peakpicker_t * pp; /**< peak picker */ |
---|
[989bf7f] | 34 | cvec_t * fftgrain; /**< phase vocoder output */ |
---|
| 35 | fvec_t * of; /**< onset detection function */ |
---|
| 36 | smpl_t threshold; /**< onset peak picking threshold */ |
---|
| 37 | smpl_t silence; /**< silence threhsold */ |
---|
| 38 | uint_t minioi; /**< minimum inter onset interval */ |
---|
[56ef7e1] | 39 | fvec_t * wasonset; /**< number of frames since last onset */ |
---|
[e4f142c] | 40 | uint_t samplerate; /**< sampling rate of the input signal */ |
---|
[7524d0b] | 41 | }; |
---|
| 42 | |
---|
| 43 | /* execute onset detection function on iput buffer */ |
---|
[a72f3f1] | 44 | void aubio_onset_do (aubio_onset_t *o, fvec_t * input, fvec_t * onset) |
---|
[7524d0b] | 45 | { |
---|
[56ef7e1] | 46 | smpl_t isonset = 0; |
---|
| 47 | smpl_t wasonset = 0; |
---|
| 48 | uint_t i; |
---|
[7524d0b] | 49 | aubio_pvoc_do (o->pv,input, o->fftgrain); |
---|
[01b8fcc] | 50 | aubio_onsetdetection_do (o->od,o->fftgrain, o->of); |
---|
[7524d0b] | 51 | /*if (usedoubled) { |
---|
[01b8fcc] | 52 | aubio_onsetdetection_do (o2,fftgrain, onset2); |
---|
[7524d0b] | 53 | onset->data[0][0] *= onset2->data[0][0]; |
---|
| 54 | }*/ |
---|
[56ef7e1] | 55 | aubio_peakpicker_do(o->pp, o->of, onset); |
---|
| 56 | for (i = 0; i < input->channels; i++) { |
---|
| 57 | isonset = onset->data[i][0]; |
---|
| 58 | wasonset = o->wasonset->data[i][0]; |
---|
[0f6f2e6] | 59 | if (isonset > 0.) { |
---|
[7524d0b] | 60 | if (aubio_silence_detection(input, o->silence)==1) { |
---|
| 61 | isonset = 0; |
---|
| 62 | wasonset++; |
---|
| 63 | } else { |
---|
| 64 | if (wasonset > o->minioi) { |
---|
| 65 | wasonset = 0; |
---|
| 66 | } else { |
---|
| 67 | isonset = 0; |
---|
| 68 | wasonset++; |
---|
| 69 | } |
---|
| 70 | } |
---|
| 71 | } else { |
---|
| 72 | wasonset++; |
---|
| 73 | } |
---|
[56ef7e1] | 74 | o->wasonset->data[i][0] = wasonset; |
---|
| 75 | onset->data[i][0] = isonset; |
---|
| 76 | } |
---|
[7524d0b] | 77 | return; |
---|
| 78 | } |
---|
| 79 | |
---|
[6338636] | 80 | uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) { |
---|
[7524d0b] | 81 | o->silence = silence; |
---|
[6338636] | 82 | return AUBIO_OK; |
---|
[7524d0b] | 83 | } |
---|
| 84 | |
---|
[6338636] | 85 | uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) { |
---|
[7524d0b] | 86 | o->threshold = threshold; |
---|
| 87 | aubio_peakpicker_set_threshold(o->pp, o->threshold); |
---|
[6338636] | 88 | return AUBIO_OK; |
---|
[7524d0b] | 89 | } |
---|
| 90 | |
---|
[6338636] | 91 | uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) { |
---|
[7524d0b] | 92 | o->minioi = minioi; |
---|
[6338636] | 93 | return AUBIO_OK; |
---|
[7524d0b] | 94 | } |
---|
| 95 | |
---|
| 96 | /* Allocate memory for an onset detection */ |
---|
[b4f5967] | 97 | aubio_onset_t * new_aubio_onset (char_t * onset_mode, |
---|
[e4f142c] | 98 | uint_t buf_size, uint_t hop_size, uint_t channels, uint_t samplerate) |
---|
[7524d0b] | 99 | { |
---|
| 100 | aubio_onset_t * o = AUBIO_NEW(aubio_onset_t); |
---|
| 101 | /** set some default parameter */ |
---|
| 102 | o->threshold = 0.3; |
---|
| 103 | o->minioi = 4; |
---|
| 104 | o->silence = -70; |
---|
[56ef7e1] | 105 | o->wasonset = new_fvec(1, channels); |
---|
[e4f142c] | 106 | o->samplerate = samplerate; |
---|
[7524d0b] | 107 | o->pv = new_aubio_pvoc(buf_size, hop_size, channels); |
---|
[56ef7e1] | 108 | o->pp = new_aubio_peakpicker(channels); |
---|
| 109 | aubio_peakpicker_set_threshold (o->pp, o->threshold); |
---|
[b4f5967] | 110 | o->od = new_aubio_onsetdetection(onset_mode,buf_size,channels); |
---|
[7524d0b] | 111 | o->fftgrain = new_cvec(buf_size,channels); |
---|
| 112 | o->of = new_fvec(1, channels); |
---|
| 113 | /*if (usedoubled) { |
---|
[b4f5967] | 114 | o2 = new_aubio_onsetdetection(onset_type2,buffer_size,channels); |
---|
[7524d0b] | 115 | onset2 = new_fvec(1 , channels); |
---|
| 116 | }*/ |
---|
| 117 | return o; |
---|
| 118 | } |
---|
| 119 | |
---|
| 120 | void del_aubio_onset (aubio_onset_t *o) |
---|
| 121 | { |
---|
| 122 | del_aubio_onsetdetection(o->od); |
---|
| 123 | del_aubio_peakpicker(o->pp); |
---|
| 124 | del_aubio_pvoc(o->pv); |
---|
| 125 | del_fvec(o->of); |
---|
[56ef7e1] | 126 | del_fvec(o->wasonset); |
---|
[7524d0b] | 127 | del_cvec(o->fftgrain); |
---|
| 128 | AUBIO_FREE(o); |
---|
| 129 | } |
---|