source: examples/aubiotrack.c @ 6a2478c

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

examples: more header updates to GPLv3

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