import 0.1.7.1
[aubio.git] / examples / aubioonset.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 <stdio.h>
20 #include <stdlib.h>
21 #include <stdarg.h>
22 #include <getopt.h>
23 #include <unistd.h>
24 #include "aubio.h"
25 #include "utils.h"
26
27 int aubio_process(float **input, float **output, int nframes);
28
29 const char * output_filename = NULL;
30 const char * input_filename  = NULL;
31 const char * onset_filename  = "/usr/share/sounds/aubio/woodblock.aiff";
32
33 /* settings */
34 int verbose = 0;
35 int usejack = 0;
36 int usedoubled = 1;
37
38
39 /* energy,specdiff,hfc,complexdomain,phase */
40 aubio_onsetdetection_type type_onset  = hfc;
41 aubio_onsetdetection_type type_onset2 = complexdomain;
42 smpl_t threshold                      = 0.1;
43 smpl_t threshold2                     = -90.;
44 uint_t buffer_size                    = 1024;
45 uint_t overlap_size                   = 512;
46 uint_t channels                       = 1;
47 uint_t samplerate                     = 44100;
48
49 /* global objects */
50 aubio_pvoc_t * pv;
51 fvec_t * ibuf;
52 fvec_t * obuf;
53 cvec_t * fftgrain;
54 fvec_t * woodblock;
55 aubio_onsetdetection_t *o;
56 aubio_onsetdetection_t *o2;
57 fvec_t *onset;
58 fvec_t *onset2;
59 int isonset = 0;
60 aubio_pickpeak_t * parms;
61
62 int aubio_process(float **input, float **output, int nframes) {
63   unsigned int i;       /*channels*/
64   unsigned int j;       /*frames*/
65   unsigned int pos = 0; /*frames%dspblocksize*/
66   for (j=0;j<nframes;j++) {
67     if(usejack) {
68       for (i=0;i<channels;i++) {
69         /* write input to datanew */
70         fvec_write_sample(ibuf, input[i][j], i, pos);
71         /* put synthnew in output */
72         output[i][j] = fvec_read_sample(obuf, i, pos);
73       }
74     }
75     /*time for fft*/
76     if (pos == overlap_size-1) {         
77       /* block loop */
78       aubio_pvoc_do (pv,ibuf, fftgrain);
79       aubio_onsetdetection(o,fftgrain, onset);
80       if (usedoubled) {
81         aubio_onsetdetection(o2,fftgrain, onset2);
82         onset->data[0][0] *= onset2->data[0][0];
83       }
84       isonset = aubio_peakpick_pimrt(onset,parms);
85       if (isonset) {
86         /* test for silence */
87         if (aubio_silence_detection(ibuf, threshold2)==1)
88           isonset=0;
89         else
90           for (pos = 0; pos < overlap_size; pos++){
91             obuf->data[0][pos] = woodblock->data[0][pos];
92           }
93       } else {
94         for (pos = 0; pos < overlap_size; pos++)
95           obuf->data[0][pos] = 0.;
96       }
97       /* end of block loop */
98       //aubio_pvoc_rdo(pv,fftgrain, obuf);
99       pos = -1; /* so it will be zero next j loop */
100     }
101     pos++;
102   }
103   return 1;
104 }
105
106 int main(int argc, char **argv) {
107   int frames;
108
109   aubio_file_t * file = NULL;
110   aubio_file_t * fileout = NULL;
111
112   aubio_file_t * onsetfile = new_file_ro(onset_filename);
113   parse_args(argc, argv);
114
115   if(!usejack)
116   {
117     debug("Opening files ...\n");
118     file = new_file_ro (input_filename);
119     file_info(file);
120     channels = aubio_file_channels(file);
121     if (output_filename != NULL)
122       fileout = new_file_wo(file, output_filename);
123   }
124
125   ibuf      = new_fvec(overlap_size, channels);
126   obuf      = new_fvec(overlap_size, channels);
127   woodblock = new_fvec(buffer_size,1);
128   fftgrain  = new_cvec(buffer_size, channels);
129
130   /* read the output sound once */
131   file_read(onsetfile, overlap_size, woodblock);
132
133   /* phase vocoder */
134   debug("Phase voc init ... \n");
135   pv = new_aubio_pvoc(buffer_size, overlap_size, channels);
136
137   /* onsets */
138   parms = new_aubio_peakpicker(threshold);
139   o = new_aubio_onsetdetection(type_onset,buffer_size,channels);
140   onset = new_fvec(1, channels);
141   if (usedoubled)    {
142     o2 = new_aubio_onsetdetection(type_onset2,buffer_size,channels);
143     onset2 = new_fvec(1 , channels);
144   }
145
146   // command line argument parsing
147   if(usejack) {
148 #ifdef JACK_SUPPORT
149     aubio_jack_t * jack_setup;
150     debug("Jack init ...\n");
151     jack_setup = new_aubio_jack(channels, channels,
152           (aubio_process_func_t)aubio_process);
153     debug("Jack activation ...\n");
154     aubio_jack_activate(jack_setup);
155     debug("Processing (Ctrl+C to quit) ...\n");
156     pause();
157     aubio_jack_close(jack_setup);
158 #else
159     outmsg("Compiled without jack output, exiting.");
160 #endif
161
162   } else {
163     /* phasevoc */
164     debug("Processing ...\n");
165
166     frames = 0;
167
168     while (overlap_size == file_read(file, overlap_size, ibuf))
169     {
170       isonset=0;
171       aubio_process(ibuf->data, obuf->data, overlap_size);
172       /* output times in seconds, taking back some 
173        * delay to ensure the label is _before_ the
174        * actual onset */
175       if (isonset && verbose) {
176         outmsg("%f\n",(frames-4)*overlap_size/(float)samplerate);
177       }
178       if (output_filename != NULL) {
179         file_write(fileout,overlap_size,obuf);
180       }
181       frames++;
182     }
183
184     debug("Processed %d frames of %d samples.\n", frames, buffer_size);
185     del_file(file);
186
187     if (output_filename != NULL)
188       del_file(fileout);
189
190   }
191
192   del_aubio_pvoc(pv);
193   del_fvec(obuf);
194   del_fvec(ibuf);
195   del_cvec(fftgrain);
196   del_fvec(onset);
197
198   debug("End of program.\n");
199   fflush(stderr);
200   return 0;
201 }
202