[b14107f] | 1 | /* |
---|
[6a2478c] | 2 | Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org> |
---|
[b14107f] | 3 | |
---|
[6a2478c] | 4 | This file is part of aubio. |
---|
[b14107f] | 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/>. |
---|
[b14107f] | 18 | |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | #include "utils.h" |
---|
| 22 | |
---|
| 23 | unsigned int pos = 0; /*frames%dspblocksize*/ |
---|
| 24 | |
---|
| 25 | aubio_pitch_t *o; |
---|
[f3617e7] | 26 | aubio_wavetable_t *wavetable; |
---|
[b14107f] | 27 | fvec_t *pitch; |
---|
| 28 | |
---|
| 29 | static int aubio_process(smpl_t **input, smpl_t **output, int nframes) { |
---|
| 30 | unsigned int j; /*frames*/ |
---|
| 31 | for (j=0;j<(unsigned)nframes;j++) { |
---|
| 32 | if(usejack) { |
---|
[4621cd6] | 33 | /* write input to datanew */ |
---|
| 34 | fvec_write_sample(ibuf, input[0][j], pos); |
---|
| 35 | /* put synthnew in output */ |
---|
| 36 | output[0][j] = fvec_read_sample(obuf, pos); |
---|
[b14107f] | 37 | } |
---|
| 38 | /*time for fft*/ |
---|
| 39 | if (pos == overlap_size-1) { |
---|
| 40 | /* block loop */ |
---|
| 41 | aubio_pitch_do (o, ibuf, pitch); |
---|
[f3617e7] | 42 | smpl_t freq = fvec_read_sample(pitch, 0); |
---|
[5b41ef9] | 43 | aubio_wavetable_set_amp ( wavetable, aubio_level_lin (ibuf) ); |
---|
[f3617e7] | 44 | if (freq != 0.0) { |
---|
| 45 | aubio_wavetable_set_freq ( wavetable, freq ); |
---|
[b14107f] | 46 | } else { |
---|
[f3617e7] | 47 | aubio_wavetable_set_freq ( wavetable, 0.0 ); |
---|
[b14107f] | 48 | } |
---|
[f3617e7] | 49 | aubio_wavetable_do (wavetable, obuf, obuf); |
---|
[b14107f] | 50 | /* end of block loop */ |
---|
| 51 | pos = -1; /* so it will be zero next j loop */ |
---|
| 52 | } |
---|
| 53 | pos++; |
---|
| 54 | } |
---|
| 55 | return 1; |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | static void process_print (void) { |
---|
| 59 | if (!verbose && usejack) return; |
---|
[4621cd6] | 60 | smpl_t pitch_found = fvec_read_sample(pitch, 0); |
---|
[b14107f] | 61 | outmsg("%f %f\n",(frames) |
---|
| 62 | *overlap_size/(float)samplerate, pitch_found); |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | int main(int argc, char **argv) { |
---|
| 66 | examples_common_init(argc,argv); |
---|
| 67 | |
---|
[cb243f2] | 68 | o = new_aubio_pitch (pitch_mode, buffer_size, overlap_size, samplerate); |
---|
[4621cd6] | 69 | pitch = new_fvec (1); |
---|
[b14107f] | 70 | |
---|
[f3617e7] | 71 | wavetable = new_aubio_wavetable (samplerate, overlap_size); |
---|
| 72 | aubio_wavetable_play ( wavetable ); |
---|
| 73 | |
---|
[b14107f] | 74 | examples_common_process(aubio_process,process_print); |
---|
| 75 | |
---|
| 76 | del_aubio_pitch (o); |
---|
[f3617e7] | 77 | del_aubio_wavetable (wavetable); |
---|
[b14107f] | 78 | del_fvec (pitch); |
---|
| 79 | |
---|
| 80 | examples_common_del(); |
---|
| 81 | debug("End of program.\n"); |
---|
| 82 | fflush(stderr); |
---|
| 83 | return 0; |
---|
| 84 | } |
---|
| 85 | |
---|