source: src/tempo/tempo.c @ 23493b5

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

src/tempo/: add const qualifiers

  • Property mode set to 100644
File size: 8.8 KB
Line 
1/*
2  Copyright (C) 2006-2009 Paul Brossier <piem@aubio.org>
3
4  This file is part of aubio.
5
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.
10
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/>.
18
19*/
20
21#include "aubio_priv.h"
22#include "fvec.h"
23#include "cvec.h"
24#include "spectral/specdesc.h"
25#include "tempo/beattracking.h"
26#include "spectral/phasevoc.h"
27#include "onset/peakpicker.h"
28#include "mathutils.h"
29#include "tempo/tempo.h"
30
31/* structure to store object state */
32struct _aubio_tempo_t {
33  aubio_specdesc_t * od;   /** onset detection */
34  aubio_pvoc_t * pv;             /** phase vocoder */
35  aubio_peakpicker_t * pp;       /** peak picker */
36  aubio_beattracking_t * bt;     /** beat tracking */
37  cvec_t * fftgrain;             /** spectral frame */
38  fvec_t * of;                   /** onset detection function value */
39  fvec_t * dfframe;              /** peak picked detection function buffer */
40  fvec_t * out;                  /** beat tactus candidates */
41  fvec_t * onset;                /** onset results */
42  smpl_t silence;                /** silence parameter */
43  smpl_t threshold;              /** peak picking threshold */
44  sint_t blockpos;               /** current position in dfframe */
45  uint_t winlen;                 /** dfframe bufsize */
46  uint_t step;                   /** dfframe hopsize */
47  uint_t samplerate;             /** sampling rate of the signal */
48  uint_t hop_size;               /** get hop_size */
49  uint_t total_frames;           /** total frames since beginning */
50  uint_t last_beat;              /** time of latest detected beat, in samples */
51  sint_t delay;                  /** delay to remove to last beat, in samples */
52  uint_t last_tatum;             /** time of latest detected tatum, in samples */
53  uint_t tatum_signature;        /** number of tatum between each beats */
54};
55
56/* execute tempo detection function on iput buffer */
57void aubio_tempo_do(aubio_tempo_t *o, const fvec_t * input, fvec_t * tempo)
58{
59  uint_t i;
60  uint_t winlen = o->winlen;
61  uint_t step   = o->step;
62  fvec_t * thresholded;
63  aubio_pvoc_do (o->pv, input, o->fftgrain);
64  aubio_specdesc_do (o->od, o->fftgrain, o->of);
65  /*if (usedoubled) {
66    aubio_specdesc_do(o2,fftgrain, onset2);
67    onset->data[0] *= onset2->data[0];
68  }*/
69  /* execute every overlap_size*step */
70  if (o->blockpos == (signed)step -1 ) {
71    /* check dfframe */
72    aubio_beattracking_do(o->bt,o->dfframe,o->out);
73    /* rotate dfframe */
74    for (i = 0 ; i < winlen - step; i++ )
75      o->dfframe->data[i] = o->dfframe->data[i+step];
76    for (i = winlen - step ; i < winlen; i++ )
77      o->dfframe->data[i] = 0.;
78    o->blockpos = -1;
79  }
80  o->blockpos++;
81  aubio_peakpicker_do (o->pp, o->of, o->onset);
82  tempo->data[1] = o->onset->data[0];
83  thresholded = aubio_peakpicker_get_thresholded_input(o->pp);
84  o->dfframe->data[winlen - step + o->blockpos] = thresholded->data[0];
85  /* end of second level loop */
86  tempo->data[0] = 0; /* reset tactus */
87  //i=0;
88  for (i = 1; i < o->out->data[0]; i++ ) {
89    /* if current frame is a predicted tactus */
90    if (o->blockpos == FLOOR(o->out->data[i])) {
91      tempo->data[0] = o->out->data[i] - FLOOR(o->out->data[i]); /* set tactus */
92      /* test for silence */
93      if (aubio_silence_detection(input, o->silence)==1) {
94        tempo->data[0] = 0; // unset beat if silent
95      }
96      o->last_beat = o->total_frames + (uint_t)ROUND(tempo->data[0] * o->hop_size);
97      o->last_tatum = o->last_beat;
98    }
99  }
100  o->total_frames += o->hop_size;
101  return;
102}
103
104uint_t aubio_tempo_get_last (aubio_tempo_t *o)
105{
106  return o->last_beat + o->delay;
107}
108
109smpl_t aubio_tempo_get_last_s (aubio_tempo_t *o)
110{
111  return aubio_tempo_get_last (o) / (smpl_t) (o->samplerate);
112}
113
114smpl_t aubio_tempo_get_last_ms (aubio_tempo_t *o)
115{
116  return aubio_tempo_get_last_s (o) * 1000.;
117}
118
119uint_t aubio_tempo_set_delay(aubio_tempo_t * o, sint_t delay) {
120  o->delay = delay;
121  return AUBIO_OK;
122}
123
124uint_t aubio_tempo_set_delay_s(aubio_tempo_t * o, smpl_t delay) {
125  o->delay = delay * o->samplerate;
126  return AUBIO_OK;
127}
128
129uint_t aubio_tempo_set_delay_ms(aubio_tempo_t * o, smpl_t delay) {
130  o->delay = 1000. * delay * o->samplerate;
131  return AUBIO_OK;
132}
133
134uint_t aubio_tempo_get_delay(aubio_tempo_t * o) {
135  return o->delay;
136}
137
138smpl_t aubio_tempo_get_delay_s(aubio_tempo_t * o) {
139  return o->delay / (smpl_t)(o->samplerate);
140}
141
142smpl_t aubio_tempo_get_delay_ms(aubio_tempo_t * o) {
143  return o->delay / (smpl_t)(o->samplerate) / 1000.;
144}
145
146uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence) {
147  o->silence = silence;
148  return AUBIO_OK;
149}
150
151smpl_t aubio_tempo_get_silence(aubio_tempo_t * o) {
152  return o->silence;
153}
154
155uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold) {
156  o->threshold = threshold;
157  aubio_peakpicker_set_threshold(o->pp, o->threshold);
158  return AUBIO_OK;
159}
160
161smpl_t aubio_tempo_get_threshold(aubio_tempo_t * o) {
162  return o->threshold;
163}
164
165/* Allocate memory for an tempo detection */
166aubio_tempo_t * new_aubio_tempo (const char_t * tempo_mode,
167    uint_t buf_size, uint_t hop_size, uint_t samplerate)
168{
169  aubio_tempo_t * o = AUBIO_NEW(aubio_tempo_t);
170  char_t specdesc_func[20];
171  o->samplerate = samplerate;
172  // check parameters are valid
173  if ((sint_t)hop_size < 1) {
174    AUBIO_ERR("tempo: got hop size %d, but can not be < 1\n", hop_size);
175    goto beach;
176  } else if ((sint_t)buf_size < 2) {
177    AUBIO_ERR("tempo: got window size %d, but can not be < 2\n", buf_size);
178    goto beach;
179  } else if (buf_size < hop_size) {
180    AUBIO_ERR("tempo: hop size (%d) is larger than window size (%d)\n", buf_size, hop_size);
181    goto beach;
182  } else if ((sint_t)samplerate < 1) {
183    AUBIO_ERR("tempo: samplerate (%d) can not be < 1\n", samplerate);
184    goto beach;
185  }
186
187  /* length of observations, worth about 6 seconds */
188  o->winlen = aubio_next_power_of_two(5.8 * samplerate / hop_size);
189  if (o->winlen < 4) o->winlen = 4;
190  o->step = o->winlen/4;
191  o->blockpos = 0;
192  o->threshold = 0.3;
193  o->silence = -90.;
194  o->total_frames = 0;
195  o->last_beat = 0;
196  o->delay = 0;
197  o->hop_size = hop_size;
198  o->dfframe  = new_fvec(o->winlen);
199  o->fftgrain = new_cvec(buf_size);
200  o->out      = new_fvec(o->step);
201  o->pv       = new_aubio_pvoc(buf_size, hop_size);
202  o->pp       = new_aubio_peakpicker();
203  aubio_peakpicker_set_threshold (o->pp, o->threshold);
204  if ( strcmp(tempo_mode, "default") == 0 ) {
205    strcpy(specdesc_func, "specflux");
206  } else {
207    strcpy(specdesc_func, tempo_mode);
208  }
209  o->od       = new_aubio_specdesc(specdesc_func,buf_size);
210  o->of       = new_fvec(1);
211  o->bt       = new_aubio_beattracking(o->winlen, o->hop_size, o->samplerate);
212  o->onset    = new_fvec(1);
213  /*if (usedoubled)    {
214    o2 = new_aubio_specdesc(type_onset2,buffer_size);
215    onset2 = new_fvec(1);
216  }*/
217  o->last_tatum = 0;
218  o->tatum_signature = 4;
219  return o;
220
221beach:
222  AUBIO_FREE(o);
223  return NULL;
224}
225
226smpl_t aubio_tempo_get_bpm(aubio_tempo_t *o) {
227  return aubio_beattracking_get_bpm(o->bt);
228}
229
230smpl_t aubio_tempo_get_period (aubio_tempo_t *o)
231{
232  return aubio_beattracking_get_period (o->bt);
233}
234
235smpl_t aubio_tempo_get_period_s (aubio_tempo_t *o)
236{
237  return aubio_beattracking_get_period_s (o->bt);
238}
239
240smpl_t aubio_tempo_get_confidence(aubio_tempo_t *o) {
241  return aubio_beattracking_get_confidence(o->bt);
242}
243
244uint_t aubio_tempo_was_tatum (aubio_tempo_t *o)
245{
246  uint_t last_tatum_distance = o->total_frames - o->last_tatum;
247  smpl_t beat_period = aubio_tempo_get_period(o);
248  smpl_t tatum_period = beat_period / o->tatum_signature;
249  if (last_tatum_distance < o->hop_size) {
250    o->last_tatum = o->last_beat;
251    return 2;
252  }
253  else if (last_tatum_distance > tatum_period) {
254    if ( last_tatum_distance + o->hop_size > beat_period ) {
255      // next beat is too close, pass
256      return 0;
257    }
258    o->last_tatum = o->total_frames;
259    return 1;
260  }
261  return 0;
262}
263
264smpl_t aubio_tempo_get_last_tatum (aubio_tempo_t *o) {
265  return (smpl_t)o->last_tatum - o->delay;
266}
267
268uint_t aubio_tempo_set_tatum_signature (aubio_tempo_t *o, uint_t signature) {
269  if (signature < 1 || signature > 64) {
270    return AUBIO_FAIL;
271  } else {
272    o->tatum_signature = signature;
273    return AUBIO_OK;
274  }
275}
276
277void del_aubio_tempo (aubio_tempo_t *o)
278{
279  del_aubio_specdesc(o->od);
280  del_aubio_beattracking(o->bt);
281  del_aubio_peakpicker(o->pp);
282  del_aubio_pvoc(o->pv);
283  del_fvec(o->out);
284  del_fvec(o->of);
285  del_cvec(o->fftgrain);
286  del_fvec(o->dfframe);
287  del_fvec(o->onset);
288  AUBIO_FREE(o);
289  return;
290}
Note: See TracBrowser for help on using the repository browser.