src/pitch: use a string to set pitch method, add a new function to set pitch unit...
[aubio.git] / examples / aubionotes.c
1 /*
2    Copyright (C) 2003 Paul Brossier
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #include "utils.h"
20
21 unsigned int pos = 0; /*frames%dspblocksize*/
22 uint_t usepitch = 1;
23
24 int aubio_process(smpl_t **input, smpl_t **output, int nframes);
25 int aubio_process(smpl_t **input, smpl_t **output, int nframes) {
26   unsigned int i;       /*channels*/
27   unsigned int j;       /*frames*/
28   for (j=0;j<(unsigned)nframes;j++) {
29     if(usejack) {
30       for (i=0;i<channels;i++) {
31         /* write input to datanew */
32         fvec_write_sample(ibuf, input[i][j], i, pos);
33         /* put synthnew in output */
34         output[i][j] = fvec_read_sample(obuf, i, pos);
35       }
36     }
37     /*time for fft*/
38     if (pos == overlap_size-1) {         
39       /* block loop */
40       aubio_pvoc_do (pv,ibuf, fftgrain);
41       aubio_onsetdetection_do(o,fftgrain, onset);
42       isonset = aubio_peakpicker_do(parms, onset);
43       
44       aubio_pitchdetection_do (pitchdet, ibuf, pitch_obuf);
45       pitch = fvec_read_sample(pitch_obuf, 0, 0);
46       if(median){
47               note_append(note_buffer, pitch);
48       }
49
50       /* curlevel is negatif or 1 if silence */
51       curlevel = aubio_level_detection(ibuf, silence);
52       if (isonset) {
53               /* test for silence */
54               if (curlevel == 1.) {
55                       isonset=0;
56                       if (median) isready = 0;
57                       /* send note off */
58                       send_noteon(curnote,0);
59               } else {
60                       if (median) {
61                               isready = 1;
62                       } else {
63                               /* kill old note */
64                               send_noteon(curnote,0);
65                               /* get and send new one */
66                               send_noteon(pitch,127+(int)floor(curlevel));
67                               curnote = pitch;
68                       }
69
70                       for (pos = 0; pos < overlap_size; pos++){
71                               obuf->data[0][pos] = woodblock->data[0][pos];
72                       }
73               }
74       } else {
75               if (median) {
76                       if (isready > 0)
77                               isready++;
78                       if (isready == median)
79                       {
80                               /* kill old note */
81                               send_noteon(curnote,0);
82                               newnote = get_note(note_buffer, note_buffer2);
83                               curnote = newnote;
84                               /* get and send new one */
85                               if (curnote>45){
86                                       send_noteon(curnote,127+(int)floor(curlevel));
87                               }
88                       }
89               } // if median
90         for (pos = 0; pos < overlap_size; pos++)
91           obuf->data[0][pos] = 0.;
92       }
93       /* end of block loop */
94       pos = -1; /* so it will be zero next j loop */
95     }
96     pos++;
97   }
98   return 1;
99 }
100
101 void process_print (void);
102 void process_print (void) {
103       if (verbose) outmsg("%f\n",pitch);
104 }
105
106 int main(int argc, char **argv) {
107   examples_common_init(argc,argv);
108   examples_common_process(aubio_process, process_print);
109   examples_common_del();
110   debug("End of program.\n");
111   fflush(stderr);
112   return 0;
113 }
114