From: Paul Brossier Date: Fri, 16 Oct 2009 02:16:42 +0000 (+0200) Subject: src/tempo/tempo.{c,h}: setters to return unsigned ints X-Git-Tag: bzr2git~124 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0a257a6fad4eabe86054d3bec9182b6e1b2b49fd;p=aubio.git src/tempo/tempo.{c,h}: setters to return unsigned ints --- diff --git a/src/tempo/tempo.c b/src/tempo/tempo.c index 87e44042..a106950b 100644 --- a/src/tempo/tempo.c +++ b/src/tempo/tempo.c @@ -86,15 +86,15 @@ void aubio_tempo_do(aubio_tempo_t *o, fvec_t * input, fvec_t * tempo) } } -void aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence) { +uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence) { o->silence = silence; - return; + return AUBIO_OK; } -void aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold) { +uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold) { o->threshold = threshold; aubio_peakpicker_set_threshold(o->pp, o->threshold); - return; + return AUBIO_OK; } /* Allocate memory for an tempo detection */ diff --git a/src/tempo/tempo.h b/src/tempo/tempo.h index ed339167..39dcb350 100644 --- a/src/tempo/tempo.h +++ b/src/tempo/tempo.h @@ -44,10 +44,10 @@ aubio_tempo_t * new_aubio_tempo (char_t * mode, void aubio_tempo_do (aubio_tempo_t *o, fvec_t * input, fvec_t * tempo); /** set tempo detection silence threshold */ -void aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence); +uint_t aubio_tempo_set_silence(aubio_tempo_t * o, smpl_t silence); /** set tempo detection peak picking threshold */ -void aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold); +uint_t aubio_tempo_set_threshold(aubio_tempo_t * o, smpl_t threshold); /** get current tempo