/* Copyright (C) 2003 Paul Brossier This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "utils.h" /* pitch objects */ smpl_t pitch = 0.; uint_t median = 6; smpl_t curlevel = 0.; aubio_pitchdetection_t *pitchdet; fvec_t *note_buffer = NULL; fvec_t *note_buffer2 = NULL; smpl_t curnote = 0.; smpl_t newnote = 0.; uint_t isready = 0; unsigned int pos = 0; /*frames%dspblocksize*/ aubio_pitchdetection_t *pitchdet; aubio_onset_t *o; fvec_t *onset; fvec_t *pitch_obuf; /** append new note candidate to the note_buffer and return filtered value. we * need to copy the input array as fvec_median destroy its input data.*/ void note_append (fvec_t * note_buffer, smpl_t curnote); uint_t get_note (fvec_t * note_buffer, fvec_t * note_buffer2); static int aubio_process(smpl_t **input, smpl_t **output, int nframes) { unsigned int i; /*channels*/ unsigned int j; /*frames*/ for (j=0;j<(unsigned)nframes;j++) { if(usejack) { for (i=0;idata[0][pos] = woodblock->data[0][pos]; } } } else { if (median) { if (isready > 0) isready++; if (isready == median) { /* kill old note */ send_noteon(curnote,0); newnote = get_note(note_buffer, note_buffer2); curnote = newnote; /* get and send new one */ if (curnote>45){ send_noteon(curnote,127+(int)floor(curlevel)); } } } // if median for (pos = 0; pos < overlap_size; pos++) obuf->data[0][pos] = 0.; } /* end of block loop */ pos = -1; /* so it will be zero next j loop */ } pos++; } return 1; } static void process_print (void) { if (verbose) outmsg("%f\n",pitch); } void note_append (fvec_t * note_buffer, smpl_t curnote) { uint_t i = 0; for (i = 0; i < note_buffer->length - 1; i++) { note_buffer->data[0][i] = note_buffer->data[0][i + 1]; } note_buffer->data[0][note_buffer->length - 1] = curnote; return; } uint_t get_note (fvec_t * note_buffer, fvec_t * note_buffer2) { uint_t i = 0; for (i = 0; i < note_buffer->length; i++) { note_buffer2->data[0][i] = note_buffer->data[0][i]; } return fvec_median (note_buffer2); } int main(int argc, char **argv) { examples_common_init(argc,argv); o = new_aubio_onset (onset_mode, buffer_size, overlap_size, channels, samplerate); onset = new_fvec (1, channels); pitchdet = new_aubio_pitchdetection (pitch_mode, buffer_size * 4, overlap_size, channels, samplerate); aubio_pitchdetection_set_tolerance (pitchdet, 0.7); pitch_obuf = new_fvec (1, channels); if (median) { note_buffer = new_fvec (median, 1); note_buffer2 = new_fvec (median, 1); } examples_common_process(aubio_process, process_print); send_noteon (curnote, 0); del_aubio_pitchdetection (pitchdet); if (median) { del_fvec (note_buffer); del_fvec (note_buffer2); } del_fvec (pitch_obuf); examples_common_del(); debug("End of program.\n"); fflush(stderr); return 0; }