From: Paul Brossier Date: Thu, 19 Dec 2013 22:49:39 +0000 (-0500) Subject: aubiotempo~.c: use specdiff, not complex X-Git-Tag: 0.3~10 X-Git-Url: https://git.aubio.org/?p=pd-aubio.git;a=commitdiff_plain;h=005d735250f90322cd0e0b98478d8d1ad7a55aa2 aubiotempo~.c: use specdiff, not complex --- diff --git a/aubiotempo~.c b/aubiotempo~.c index b78567e..c62b71b 100644 --- a/aubiotempo~.c +++ b/aubiotempo~.c @@ -82,7 +82,7 @@ static void *aubiotempo_tilde_new (t_floatarg f) x->bufsize = 1024; x->hopsize = x->bufsize / 2; - x->t = new_aubio_tempo ("complex", x->bufsize, x->hopsize, + x->t = new_aubio_tempo ("specdiff", x->bufsize, x->hopsize, (uint_t) sys_getsr ()); aubio_tempo_set_silence(x->t,x->silence); aubio_tempo_set_threshold(x->t,x->threshold);