src/utils/scale.{c,h}: set method to return int
authorPaul Brossier <piem@piem.org>
Thu, 15 Oct 2009 19:09:38 +0000 (21:09 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 15 Oct 2009 19:09:38 +0000 (21:09 +0200)
src/utils/scale.c
src/utils/scale.h

index 58655fced31b23f32967140ca6c784c658aa0e61..177ce9db346a8e63fb3919535d9bb48241dd1412 100644 (file)
@@ -47,7 +47,7 @@ void del_aubio_scale(aubio_scale_t *s) {
   AUBIO_FREE(s);
 }
 
-void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
+uint_t aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
     smpl_t olow, smpl_t ohig) {
   smpl_t inputrange = ihig - ilow;
   smpl_t outputrange= ohig - olow;
@@ -63,6 +63,7 @@ void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
       inputrange = inputrange * -1.0f;
     }
   }
+  return AUBIO_OK;
 }
 
 void aubio_scale_do (aubio_scale_t *s, fvec_t *input) 
index 123c248c227b4a80499af767ed7da576faa2fd0d..e18957efcbeadeb01222d7315604e66b0c94526d 100644 (file)
@@ -68,7 +68,7 @@ void aubio_scale_do(aubio_scale_t *s, fvec_t * input);
   \param ihig higher value of output function
 
 */
-void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
+uint_t aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
     smpl_t olow, smpl_t ohig);
 
 #ifdef __cplusplus