source: examples/aubioonset.c @ 0e0a049

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

examples/: simplify, use fvec_ funcs

  • Property mode set to 100644
File size: 2.6 KB
Line 
1/*
2   Copyright (C) 2003 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#include "utils.h"
20
21unsigned int pos = 0; /*frames%dspblocksize*/
22
23aubio_onset_t *o;
24fvec_t *onset;
25
26static int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
27  unsigned int i;       /*channels*/
28  unsigned int j;       /*frames*/
29  for (j=0;j<(unsigned)nframes;j++) {
30    if(usejack) {
31      for (i=0;i<channels;i++) {
32        /* write input to datanew */
33        fvec_write_sample(ibuf, input[i][j], i, pos);
34        /* put synthnew in output */
35        output[i][j] = fvec_read_sample(obuf, i, pos);
36      }
37    }
38    /*time for fft*/
39    if (pos == overlap_size-1) {         
40      /* block loop */
41      aubio_onset_do (o, ibuf, onset);
42      if (fvec_read_sample(onset, 0, 0)) {
43        fvec_copy (woodblock, obuf);
44      } else {
45        fvec_zeros (obuf);
46      }
47      /* end of block loop */
48      pos = -1; /* so it will be zero next j loop */
49    }
50    pos++;
51  }
52  return 1;
53}
54
55static void process_print (void) {
56      /* output times in seconds, taking back some
57       * delay to ensure the label is _before_ the
58       * actual onset */
59      if (!verbose && usejack) return;
60      smpl_t onset_found = fvec_read_sample(onset, 0, 0);
61      if (onset_found) {
62        if(frames >= 4) {
63          outmsg("%f\n",(frames - frames_delay + onset_found) 
64                  *overlap_size/(float)samplerate);
65        } else if (frames < frames_delay) {
66          outmsg("%f\n",0.);
67        }
68      }
69}
70
71int main(int argc, char **argv) {
72  frames_delay = 3;
73  examples_common_init(argc,argv);
74
75  o = new_aubio_onset (onset_mode, buffer_size, overlap_size, channels,
76          samplerate);
77  if (threshold != 0.) aubio_onset_set_threshold (o, threshold);
78  onset = new_fvec (1, channels);
79
80  examples_common_process(aubio_process,process_print);
81
82  del_aubio_onset (o);
83  del_fvec (onset);
84
85  examples_common_del();
86  debug("End of program.\n");
87  fflush(stderr);
88  return 0;
89}
90
Note: See TracBrowser for help on using the repository browser.