From: Paul Brossier Date: Sun, 26 Mar 2017 15:48:58 +0000 (+0200) Subject: examples/aubioonset.c: also display awhitening and compression X-Git-Tag: 0.4.5~20^2~7 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=7b711b3bb970924dfbf2871c1f28822669d255e7;p=aubio.git examples/aubioonset.c: also display awhitening and compression --- diff --git a/examples/aubioonset.c b/examples/aubioonset.c index 829597f4..18b9a61b 100644 --- a/examples/aubioonset.c +++ b/examples/aubioonset.c @@ -76,7 +76,9 @@ int main(int argc, char **argv) { verbmsg ("buffer_size: %d, ", buffer_size); verbmsg ("hop_size: %d, ", hop_size); verbmsg ("silence: %f, ", aubio_onset_get_silence(o)); - verbmsg ("threshold: %f\n", aubio_onset_get_threshold(o)); + verbmsg ("threshold: %f, ", aubio_onset_get_threshold(o)); + verbmsg ("awhitening: %f, ", aubio_onset_get_awhitening(o)); + verbmsg ("compression: %f\n", aubio_onset_get_compression(o)); onset = new_fvec (1);