/* Copyright (C) 2004, 2005 Mario Lang 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 "aubio_priv.h" #include "fvec.h" #include "pitch/pitchschmitt.h" smpl_t aubio_schmittS16LE (aubio_pitchschmitt_t *p, uint_t nframes, signed short int *indata); struct _aubio_pitchschmitt_t { uint_t blockSize; uint_t rate; signed short int *schmittBuffer; signed short int *schmittPointer; signed short int *buf; }; aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size, uint_t samplerate) { aubio_pitchschmitt_t * p = AUBIO_NEW(aubio_pitchschmitt_t); p->blockSize = size; p->schmittBuffer = AUBIO_ARRAY(signed short int,p->blockSize); p->buf = AUBIO_ARRAY(signed short int,p->blockSize); p->schmittPointer = p->schmittBuffer; p->rate = samplerate; return p; } smpl_t aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * input) { uint_t i; for (i=0; ilength; i++) { p->buf[i] = input->data[0][i]*32768.; } return aubio_schmittS16LE(p, input->length, p->buf); } smpl_t aubio_schmittS16LE (aubio_pitchschmitt_t *p, uint_t nframes, signed short int *indata) { uint_t i, j; uint_t blockSize = p->blockSize; signed short int *schmittBuffer = p->schmittBuffer; signed short int *schmittPointer = p->schmittPointer; smpl_t freq = 0., trigfact = 0.6; for (i=0; i= (sint_t)blockSize) { sint_t endpoint, startpoint, t1, t2, A1, A2, tc, schmittTriggered; schmittPointer = schmittBuffer; for (j=0,A1=0,A2=0; j0 && A1=t2 && schmittBuffer[j+1]< t2) && j= t1); } else if (schmittBuffer[j]>=t2 && schmittBuffer[j+1] startpoint) { freq = ((smpl_t)p->rate*(tc/(smpl_t)(endpoint-startpoint))); } } } p->schmittBuffer = schmittBuffer; p->schmittPointer = schmittPointer; return freq; } void del_aubio_pitchschmitt (aubio_pitchschmitt_t *p) { AUBIO_FREE(p->schmittBuffer); AUBIO_FREE(p); }