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_ONSET 1 |
---|
24 | #define PROG_HAS_JACK 1 |
---|
25 | // TODO add PROG_HAS_OUTPUT |
---|
26 | #include "parse_args.h" |
---|
27 | |
---|
28 | aubio_notes_t *notes; |
---|
29 | uint_t lastnote = 0; |
---|
30 | |
---|
31 | void process_block (fvec_t *ibuf, fvec_t *obuf) |
---|
32 | { |
---|
33 | aubio_notes_do (notes, ibuf, obuf); |
---|
34 | // did we get a note off? |
---|
35 | if (obuf->data[2] != 0) { |
---|
36 | send_noteon(obuf->data[2], 0); |
---|
37 | } |
---|
38 | // did we get a note on? |
---|
39 | if (obuf->data[0] != 0) { |
---|
40 | send_noteon(obuf->data[0], obuf->data[1]); |
---|
41 | lastnote = (uint_t) floor(obuf->data[0]); |
---|
42 | } |
---|
43 | } |
---|
44 | |
---|
45 | void process_print (void) |
---|
46 | { |
---|
47 | //if (verbose) outmsg("%f\n",pitch_obuf->data[0]); |
---|
48 | } |
---|
49 | |
---|
50 | int main(int argc, char **argv) { |
---|
51 | examples_common_init(argc,argv); |
---|
52 | |
---|
53 | verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); |
---|
54 | |
---|
55 | verbmsg ("onset method: %s, ", onset_method); |
---|
56 | verbmsg ("buffer_size: %d, ", buffer_size); |
---|
57 | verbmsg ("hop_size: %d, ", hop_size); |
---|
58 | verbmsg ("threshold: %f\n", onset_threshold); |
---|
59 | |
---|
60 | verbmsg ("pitch method: %s, ", pitch_method); |
---|
61 | verbmsg ("buffer_size: %d, ", buffer_size * 4); |
---|
62 | verbmsg ("hop_size: %d, ", hop_size); |
---|
63 | verbmsg ("tolerance: %f\n", pitch_tolerance); |
---|
64 | |
---|
65 | notes = new_aubio_notes ("default", buffer_size, hop_size, samplerate); |
---|
66 | |
---|
67 | examples_common_process((aubio_process_func_t)process_block, process_print); |
---|
68 | |
---|
69 | // send a last note off |
---|
70 | send_noteon (lastnote, 0); |
---|
71 | |
---|
72 | del_aubio_notes (notes); |
---|
73 | |
---|
74 | examples_common_del(); |
---|
75 | return 0; |
---|
76 | } |
---|
77 | |
---|