source: src/onset/onset.c @ 96a96d7

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 96a96d7 was 96a96d7, checked in by Paul Brossier <piem@piem.org>, 10 years ago

src/onset/onset.h: add aubio_onset_get_silence()

  • Property mode set to 100644
File size: 6.8 KB
RevLine 
[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]31struct _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 */
[a72f3f1]48void aubio_onset_do (aubio_onset_t *o, 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 {
[35f73b8c]70    // we are at the beginning of the file, and we don't find silence
[28c066e]71    if (o->total_frames <= o->delay && o->last_onset < o ->minioi && aubio_silence_detection(input, o->silence) == 0) {
[35f73b8c]72      //AUBIO_DBG ("beginning of file is not silent, marking as onset\n");
[f5e0a54]73      isonset = o->delay / o->hop_size;
74      o->last_onset = o->delay;
[376946a]75    }
[7524d0b]76  }
[0b9a02a]77  onset->data[0] = isonset;
[f5e0a54]78  o->total_frames += o->hop_size;
[7524d0b]79  return;
80}
81
[8b884ef]82uint_t aubio_onset_get_last (aubio_onset_t *o)
[f5e0a54]83{
84  return o->last_onset - o->delay;
85}
86
[8b884ef]87smpl_t aubio_onset_get_last_s (aubio_onset_t *o)
[f5e0a54]88{
[8b884ef]89  return aubio_onset_get_last (o) / (smpl_t) (o->samplerate);
[f5e0a54]90}
91
[8b884ef]92smpl_t aubio_onset_get_last_ms (aubio_onset_t *o)
[f5e0a54]93{
[47e067b]94  return aubio_onset_get_last_s (o) * 1000.;
[f5e0a54]95}
96
[6338636]97uint_t aubio_onset_set_silence(aubio_onset_t * o, smpl_t silence) {
[7524d0b]98  o->silence = silence;
[6338636]99  return AUBIO_OK;
[7524d0b]100}
101
[96a96d7]102smpl_t aubio_onset_get_silence(aubio_onset_t * o) {
103  return o->silence;
104}
105
[6338636]106uint_t aubio_onset_set_threshold(aubio_onset_t * o, smpl_t threshold) {
[8f14c6e]107  aubio_peakpicker_set_threshold(o->pp, threshold);
[6338636]108  return AUBIO_OK;
[7524d0b]109}
110
[10b11d6]111smpl_t aubio_onset_get_threshold(aubio_onset_t * o) {
112  return aubio_peakpicker_get_threshold(o->pp);
113}
114
[6338636]115uint_t aubio_onset_set_minioi(aubio_onset_t * o, uint_t minioi) {
[35f73b8c]116  o->minioi = minioi;
[6338636]117  return AUBIO_OK;
[7524d0b]118}
119
[f5e0a54]120uint_t aubio_onset_get_minioi(aubio_onset_t * o) {
121  return o->minioi;
122}
123
[35f73b8c]124uint_t aubio_onset_set_minioi_s(aubio_onset_t * o, smpl_t minioi) {
125  return aubio_onset_set_minioi (o, minioi * o->samplerate);
126}
127
128smpl_t aubio_onset_get_minioi_s(aubio_onset_t * o) {
129  return aubio_onset_get_minioi (o) / (smpl_t) o->samplerate;
130}
131
132uint_t aubio_onset_set_minioi_ms(aubio_onset_t * o, smpl_t minioi) {
133  return aubio_onset_set_minioi_s (o, minioi / 1000.);
134}
135
136smpl_t aubio_onset_get_minioi_ms(aubio_onset_t * o) {
137  return aubio_onset_get_minioi_s (o) * 1000.;
138}
139
[f5e0a54]140uint_t aubio_onset_set_delay(aubio_onset_t * o, uint_t delay) {
141  o->delay = delay;
142  return AUBIO_OK;
143}
144
145uint_t aubio_onset_get_delay(aubio_onset_t * o) {
146  return o->delay;
147}
148
149uint_t aubio_onset_set_delay_s(aubio_onset_t * o, smpl_t delay) {
150  return aubio_onset_set_delay (o, delay * o->samplerate);
151}
152
153smpl_t aubio_onset_get_delay_s(aubio_onset_t * o) {
154  return aubio_onset_get_delay (o) / (smpl_t) o->samplerate;
155}
156
157uint_t aubio_onset_set_delay_ms(aubio_onset_t * o, smpl_t delay) {
158  return aubio_onset_set_delay_s (o, delay / 1000.);
159}
160
161smpl_t aubio_onset_get_delay_ms(aubio_onset_t * o) {
162  return aubio_onset_get_delay_s (o) * 1000.;
163}
164
[35f73b8c]165smpl_t aubio_onset_get_descriptor(aubio_onset_t * o) {
[df53936]166  return o->desc->data[0];
[35f73b8c]167}
168
169smpl_t aubio_onset_get_thresholded_descriptor(aubio_onset_t * o) {
170  fvec_t * thresholded = aubio_peakpicker_get_thresholded_input(o->pp);
171  return thresholded->data[0];
172}
173
[7524d0b]174/* Allocate memory for an onset detection */
[b4f5967]175aubio_onset_t * new_aubio_onset (char_t * onset_mode, 
[0b9a02a]176    uint_t buf_size, uint_t hop_size, uint_t samplerate)
[7524d0b]177{
178  aubio_onset_t * o = AUBIO_NEW(aubio_onset_t);
[892c369]179
180  /* check parameters are valid */
181  if ((sint_t)hop_size < 1) {
182    AUBIO_ERR("onset: got hop_size %d, but can not be < 1\n", hop_size);
183    goto beach;
184  } else if ((sint_t)buf_size < 1) {
185    AUBIO_ERR("onset: got buffer_size %d, but can not be < 1\n", buf_size);
186    goto beach;
187  } else if (buf_size < hop_size) {
188    AUBIO_ERR("onset: hop size (%d) is larger than win size (%d)\n", buf_size, hop_size);
189    goto beach;
190  } else if ((sint_t)samplerate < 1) {
191    AUBIO_ERR("onset: samplerate (%d) can not be < 1\n", samplerate);
192    goto beach;
193  }
194
[8f14c6e]195  /* store creation parameters */
[35f73b8c]196  o->samplerate = samplerate;
197  o->hop_size = hop_size;
[8f14c6e]198
199  /* allocate memory */
[35f73b8c]200  o->pv = new_aubio_pvoc(buf_size, o->hop_size);
[0b9a02a]201  o->pp = new_aubio_peakpicker();
202  o->od = new_aubio_specdesc(onset_mode,buf_size);
203  o->fftgrain = new_cvec(buf_size);
[df53936]204  o->desc = new_fvec(1);
[8f14c6e]205
206  /* set some default parameter */
207  aubio_onset_set_threshold (o, 0.3);
[cbda661]208  aubio_onset_set_delay(o, 4.3 * hop_size);
[8f14c6e]209  aubio_onset_set_minioi_ms(o, 20.);
210  aubio_onset_set_silence(o, -70.);
211
212  /* initialize internal variables */
213  o->last_onset = 0;
214  o->total_frames = 0;
[7524d0b]215  return o;
[892c369]216
217beach:
218  AUBIO_FREE(o);
219  return NULL;
[7524d0b]220}
221
222void del_aubio_onset (aubio_onset_t *o)
223{
[31907fd]224  del_aubio_specdesc(o->od);
[7524d0b]225  del_aubio_peakpicker(o->pp);
226  del_aubio_pvoc(o->pv);
[df53936]227  del_fvec(o->desc);
[7524d0b]228  del_cvec(o->fftgrain);
229  AUBIO_FREE(o);
230}
Note: See TracBrowser for help on using the repository browser.