source: src/onset/onset.c @ be6e8e6

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

Merge branch 'develop' into awhitening

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