From: Paul Brossier Date: Sat, 7 Dec 2013 16:27:45 +0000 (-0500) Subject: examples/aubiopitch.c: add pitch_unit X-Git-Tag: 0.4.0-beta1~43 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=134cd3a1b76f29e6e2f888da59da9ce6c68cce44;p=aubio.git examples/aubiopitch.c: add pitch_unit --- diff --git a/examples/aubiopitch.c b/examples/aubiopitch.c index cf10babb..912aca80 100644 --- a/examples/aubiopitch.c +++ b/examples/aubiopitch.c @@ -54,12 +54,14 @@ int main(int argc, char **argv) { verbmsg ("using source: %s at %dHz\n", source_uri, samplerate); verbmsg ("pitch method: %s, ", pitch_method); + verbmsg ("pitch unit: %s, ", pitch_unit); verbmsg ("buffer_size: %d, ", buffer_size); verbmsg ("hop_size: %d, ", hop_size); verbmsg ("tolerance: %f\n", pitch_tolerance); o = new_aubio_pitch (pitch_method, buffer_size, hop_size, samplerate); if (pitch_tolerance != 0.) aubio_pitch_set_tolerance (o, pitch_tolerance); + if (pitch_unit != NULL) aubio_pitch_set_unit (o, pitch_unit); pitch = new_fvec (1); wavetable = new_aubio_wavetable (samplerate, hop_size);