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