examples/: build with -Wdeclaration-after-statement
[aubio.git] / examples / aubiopitch.c
1 /*
2   Copyright (C) 2003-2013 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 "utils.h"
22 #define PROG_HAS_PITCH 1
23 #define PROG_HAS_OUTPUT 1
24 #define PROG_HAS_JACK 1
25 #include "parse_args.h"
26
27 aubio_pitch_t *o;
28 aubio_wavetable_t *wavetable;
29 fvec_t *pitch;
30
31 void process_block(fvec_t * ibuf, fvec_t * obuf)
32 {
33   smpl_t freq;
34   aubio_pitch_do (o, ibuf, pitch);
35   if ( !usejack && ! sink_uri ) return;
36   fvec_zeros(obuf);
37   freq = fvec_get_sample(pitch, 0);
38   aubio_wavetable_set_amp ( wavetable, aubio_level_lin (ibuf) );
39   aubio_wavetable_set_freq ( wavetable, freq );
40   if (mix_input)
41     aubio_wavetable_do (wavetable, ibuf, obuf);
42   else
43     aubio_wavetable_do (wavetable, obuf, obuf);
44 }
45
46 void process_print (void)
47 {
48   smpl_t pitch_found = fvec_get_sample(pitch, 0);
49   outmsg("%f %f\n",(blocks)
50       *hop_size/(float)samplerate, pitch_found);
51 }
52
53 int main(int argc, char **argv) {
54
55   buffer_size = 2048;
56
57   examples_common_init(argc,argv);
58
59   verbmsg ("using source: %s at %dHz\n", source_uri, samplerate);
60   verbmsg ("pitch method: %s, ", pitch_method);
61   verbmsg ("pitch unit: %s, ", pitch_unit);
62   verbmsg ("buffer_size: %d, ", buffer_size);
63   verbmsg ("hop_size: %d, ", hop_size);
64   verbmsg ("tolerance: %f\n", pitch_tolerance);
65
66   o = new_aubio_pitch (pitch_method, buffer_size, hop_size, samplerate);
67   if (pitch_tolerance != 0.)
68     aubio_pitch_set_tolerance (o, pitch_tolerance);
69   if (silence_threshold != -90.)
70     aubio_pitch_set_silence (o, silence_threshold);
71   if (pitch_unit != NULL)
72     aubio_pitch_set_unit (o, pitch_unit);
73
74   pitch = new_fvec (1);
75
76   wavetable = new_aubio_wavetable (samplerate, hop_size);
77   aubio_wavetable_play ( wavetable );
78
79   examples_common_process((aubio_process_func_t)process_block,process_print);
80
81   del_aubio_pitch (o);
82   del_aubio_wavetable (wavetable);
83   del_fvec (pitch);
84
85   examples_common_del();
86   return 0;
87 }
88