[b78805a] | 1 | /* |
---|
[6a2478c] | 2 | Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> |
---|
[b78805a] | 3 | |
---|
[6a2478c] | 4 | This file is part of aubio. |
---|
[b78805a] | 5 | |
---|
[6a2478c] | 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/>. |
---|
[b78805a] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
[fc5bc72] | 21 | #include <aubio.h> |
---|
[b78805a] | 22 | #include "utils.h" |
---|
| 23 | |
---|
[d4c5de7] | 24 | uint_t pos = 0; /* frames%dspblocksize */ |
---|
| 25 | fvec_t * tempo_out = NULL; |
---|
| 26 | aubio_tempo_t * bt = NULL; |
---|
| 27 | smpl_t istactus = 0; |
---|
| 28 | smpl_t isonset = 0; |
---|
| 29 | |
---|
| 30 | static int aubio_process(smpl_t **input, smpl_t **output, int nframes) { |
---|
[b78805a] | 31 | unsigned int i; /*channels*/ |
---|
| 32 | unsigned int j; /*frames*/ |
---|
[af35ed0] | 33 | for (j=0;j<(unsigned)nframes;j++) { |
---|
[b78805a] | 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 */ |
---|
[d4c5de7] | 45 | aubio_tempo_do (bt,ibuf,tempo_out); |
---|
[0e0a049] | 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); |
---|
[b78805a] | 50 | } else { |
---|
[0e0a049] | 51 | fvec_zeros (obuf); |
---|
[b78805a] | 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 | |
---|
[d4c5de7] | 61 | static void process_print (void) { |
---|
[b78805a] | 62 | if (output_filename == NULL) { |
---|
[54a5d56] | 63 | if (istactus) { |
---|
| 64 | outmsg("%f\n",((smpl_t)(frames*overlap_size)+(istactus-1.)*overlap_size)/(smpl_t)samplerate); |
---|
| 65 | } |
---|
[2cdae81] | 66 | if (isonset && verbose) |
---|
[b78805a] | 67 | outmsg(" \t \t%f\n",(frames)*overlap_size/(float)samplerate); |
---|
| 68 | } |
---|
| 69 | } |
---|
| 70 | |
---|
| 71 | int main(int argc, char **argv) { |
---|
| 72 | |
---|
[b5aa063] | 73 | buffer_size = 1024; |
---|
| 74 | overlap_size = 512; |
---|
[b78805a] | 75 | /* override default settings */ |
---|
| 76 | examples_common_init(argc,argv); |
---|
| 77 | |
---|
[d4c5de7] | 78 | tempo_out = new_fvec(2,channels); |
---|
| 79 | bt = new_aubio_tempo(onset_mode,buffer_size,overlap_size,channels, samplerate); |
---|
[40acfbc] | 80 | if (threshold != 0.) aubio_tempo_set_threshold (bt, threshold); |
---|
[b78805a] | 81 | |
---|
| 82 | examples_common_process(aubio_process,process_print); |
---|
| 83 | |
---|
[fc5bc72] | 84 | del_aubio_tempo(bt); |
---|
[d4c5de7] | 85 | del_fvec(tempo_out); |
---|
[fc5bc72] | 86 | |
---|
[b78805a] | 87 | examples_common_del(); |
---|
| 88 | |
---|
| 89 | debug("End of program.\n"); |
---|
| 90 | |
---|
| 91 | fflush(stderr); |
---|
| 92 | |
---|
| 93 | return 0; |
---|
| 94 | } |
---|
| 95 | |
---|