[96fb8ad] | 1 | /* |
---|
[50bc5f2] | 2 | Copyright (C) 2003-2009 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 | |
---|
[96fb8ad] | 19 | */ |
---|
| 20 | |
---|
[bd2f2ab] | 21 | #include <stdio.h> |
---|
| 22 | #include <stdlib.h> |
---|
| 23 | #include <stdarg.h> |
---|
| 24 | #include <getopt.h> |
---|
| 25 | #include <unistd.h> |
---|
[50bc5f2] | 26 | #include <math.h> /* for isfinite */ |
---|
[ebbf5a0] | 27 | #include <string.h> /* for strcmp */ |
---|
[bd2f2ab] | 28 | #include <aubio.h> |
---|
| 29 | #include <aubioext.h> |
---|
| 30 | |
---|
[a3e24ec] | 31 | #ifdef HAVE_C99_VARARGS_MACROS |
---|
| 32 | #define debug(...) if (verbose) fprintf (stderr, __VA_ARGS__) |
---|
| 33 | #define errmsg(...) fprintf (stderr, __VA_ARGS__) |
---|
| 34 | #define outmsg(...) fprintf (stdout, __VA_ARGS__) |
---|
| 35 | #else |
---|
| 36 | #define debug(format, args...) if (verbose) fprintf(stderr, format , ##args) |
---|
| 37 | #define errmsg(format, args...) fprintf(stderr, format , ##args) |
---|
| 38 | #define outmsg(format, args...) fprintf(stdout, format , ##args) |
---|
| 39 | #endif |
---|
| 40 | |
---|
[96fb8ad] | 41 | |
---|
[bd2f2ab] | 42 | extern int frames; |
---|
[96fb8ad] | 43 | extern int verbose; |
---|
| 44 | extern int usejack; |
---|
[62c6075] | 45 | extern int usedoubled; |
---|
[e24378a] | 46 | extern int frames_delay; |
---|
[bd2f2ab] | 47 | extern unsigned int median; |
---|
[50bc5f2] | 48 | extern const char *output_filename; |
---|
| 49 | extern const char *input_filename; |
---|
[96fb8ad] | 50 | /* defined in utils.c */ |
---|
| 51 | void usage (FILE * stream, int exit_code); |
---|
| 52 | int parse_args (int argc, char **argv); |
---|
[50bc5f2] | 53 | void examples_common_init (int argc, char **argv); |
---|
| 54 | void examples_common_del (void); |
---|
| 55 | typedef void (aubio_print_func_t) (void); |
---|
[b511fa9] | 56 | #ifndef HAVE_JACK |
---|
[5a1ff62] | 57 | typedef int (*aubio_process_func_t) |
---|
[50bc5f2] | 58 | (smpl_t ** input, smpl_t ** output, int nframes); |
---|
[5a1ff62] | 59 | #endif |
---|
[50bc5f2] | 60 | void examples_common_process (aubio_process_func_t process_func, |
---|
| 61 | aubio_print_func_t print); |
---|
| 62 | void flush_process (aubio_process_func_t process_func, |
---|
| 63 | aubio_print_func_t print); |
---|
[bd2f2ab] | 64 | |
---|
| 65 | |
---|
[50bc5f2] | 66 | void send_noteon (int pitch, int velo); |
---|
[bd2f2ab] | 67 | /** append new note candidate to the note_buffer and return filtered value. we |
---|
[5c4ec3c] | 68 | * need to copy the input array as fvec_median destroy its input data.*/ |
---|
[50bc5f2] | 69 | void note_append (fvec_t * note_buffer, smpl_t curnote); |
---|
| 70 | uint_t get_note (fvec_t * note_buffer, fvec_t * note_buffer2); |
---|
[bd2f2ab] | 71 | |
---|
[50bc5f2] | 72 | extern const char *output_filename; |
---|
| 73 | extern const char *input_filename; |
---|
| 74 | extern const char *onset_filename; |
---|
[bd2f2ab] | 75 | extern int verbose; |
---|
| 76 | extern int usejack; |
---|
| 77 | extern int usedoubled; |
---|
| 78 | |
---|
| 79 | |
---|
| 80 | /* energy,specdiff,hfc,complexdomain,phase */ |
---|
| 81 | extern aubio_onsetdetection_type type_onset; |
---|
| 82 | extern aubio_onsetdetection_type type_onset2; |
---|
| 83 | extern smpl_t threshold; |
---|
[660cad22] | 84 | extern smpl_t silence; |
---|
[bd2f2ab] | 85 | extern uint_t buffer_size; |
---|
| 86 | extern uint_t overlap_size; |
---|
| 87 | extern uint_t channels; |
---|
| 88 | extern uint_t samplerate; |
---|
| 89 | |
---|
| 90 | |
---|
[50bc5f2] | 91 | extern aubio_sndfile_t *file; |
---|
| 92 | extern aubio_sndfile_t *fileout; |
---|
[bd2f2ab] | 93 | |
---|
[50bc5f2] | 94 | extern aubio_pvoc_t *pv; |
---|
| 95 | extern fvec_t *ibuf; |
---|
| 96 | extern fvec_t *obuf; |
---|
| 97 | extern cvec_t *fftgrain; |
---|
| 98 | extern fvec_t *woodblock; |
---|
[bd2f2ab] | 99 | extern aubio_onsetdetection_t *o; |
---|
| 100 | extern aubio_onsetdetection_t *o2; |
---|
| 101 | extern fvec_t *onset; |
---|
| 102 | extern fvec_t *onset2; |
---|
[19f1dc9] | 103 | extern smpl_t isonset; |
---|
[8766cb6] | 104 | extern aubio_peakpicker_t *parms; |
---|
[bd2f2ab] | 105 | |
---|
| 106 | |
---|
| 107 | /* pitch objects */ |
---|
| 108 | extern smpl_t pitch; |
---|
[50bc5f2] | 109 | extern aubio_pitchdetection_t *pitchdet; |
---|
[bd2f2ab] | 110 | extern aubio_pitchdetection_type mode; |
---|
| 111 | extern uint_t median; |
---|
| 112 | |
---|
[50bc5f2] | 113 | extern fvec_t *note_buffer; |
---|
| 114 | extern fvec_t *note_buffer2; |
---|
[bd2f2ab] | 115 | extern smpl_t curlevel; |
---|
| 116 | extern smpl_t maxonset; |
---|
| 117 | |
---|
| 118 | extern smpl_t curnote; |
---|
| 119 | extern smpl_t newnote; |
---|
| 120 | extern uint_t isready; |
---|
| 121 | |
---|
| 122 | /* per example param */ |
---|
| 123 | extern uint_t usepitch; |
---|