shithub: aubio

ref: 06f2d78ae6d20238dc8c89f1b490f0862a49c450
dir: /tests/src/test-pitchfcomb.c/

View raw version
#include <aubio.h>

int main(){
        /* allocate some memory */
        uint_t win_s      = 1024;                       /* window size */
        uint_t hop_s      = win_s/4;                    /* hop size */
        uint_t samplerate = 44100;                      /* samplerate */
        uint_t channels   = 1;                          /* number of channel */
        fvec_t * in       = new_fvec (hop_s, channels); /* input buffer */
        aubio_pitchfcomb_t * o  = new_aubio_pitchfcomb (
          win_s, hop_s, samplerate
          );
        uint_t i = 0;

        while (i < 1000) {
          aubio_pitchfcomb_do (o,in);
          i++;
        };

        del_aubio_pitchfcomb(o);
        del_fvec(in);
        aubio_cleanup();

        return 0;
}