src/utils/scale.c: rename aubio_scale_set to aubio_scale_set_limits
authorPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 21:19:36 +0000 (23:19 +0200)
committerPaul Brossier <piem@piem.org>
Wed, 7 Oct 2009 21:19:36 +0000 (23:19 +0200)
src/utils/hist.c
src/utils/scale.c
src/utils/scale.h
swig/aubio.i
tests/src/test-scale.c

index 19fced80576b7feaed23db49cf9219b260b1c753..d1b5359f453afdbde4894c01594aa1e810dce2d8 100644 (file)
@@ -113,7 +113,7 @@ void aubio_hist_dyn_notnull (aubio_hist_t *s, fvec_t *input) {
   smpl_t step = (ihig-ilow)/(smpl_t)(s->nelems);
 
   /* readapt */
-  aubio_scale_set(s->scaler, ilow, ihig, 0, s->nelems);
+  aubio_scale_set_limits (s->scaler, ilow, ihig, 0, s->nelems);
 
   /* recalculate centers */
   s->cent->data[0][0] = ilow + 0.5f * step;
index 8db9007f4bc9da95d7b8b3300524a97b000a0c22..58655fced31b23f32967140ca6c784c658aa0e61 100644 (file)
@@ -39,7 +39,7 @@ struct _aubio_scale_t {
 aubio_scale_t * new_aubio_scale (smpl_t ilow, smpl_t ihig, 
     smpl_t olow, smpl_t ohig) {
   aubio_scale_t * s = AUBIO_NEW(aubio_scale_t);
-  aubio_scale_set (s, ilow, ihig, olow, ohig);
+  aubio_scale_set_limits (s, ilow, ihig, olow, ohig);
   return s;
 }
 
@@ -47,7 +47,7 @@ void del_aubio_scale(aubio_scale_t *s) {
   AUBIO_FREE(s);
 }
 
-void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
+void 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;
index 226bb74a249e7f79d4188588ad2df354bfe65580..123c248c227b4a80499af767ed7da576faa2fd0d 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 (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
+void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig,
     smpl_t olow, smpl_t ohig);
 
 #ifdef __cplusplus
index f68bf2c672582d8cf20d2dd2425af06d1b248776..84b851db45344dc9ab398ad4d6e890c6405be80a 100644 (file)
@@ -175,7 +175,7 @@ void aubio_mfcc_do(aubio_mfcc_t *mf, cvec_t *in, fvec_t *out);
 
 /* scale */
 extern aubio_scale_t * new_aubio_scale(smpl_t flow, smpl_t fhig, smpl_t ilow, smpl_t ihig);
-extern void aubio_scale_set (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig);
+extern void aubio_scale_set_limits (aubio_scale_t *s, smpl_t ilow, smpl_t ihig, smpl_t olow, smpl_t ohig);
 extern void aubio_scale_do(aubio_scale_t *s, fvec_t * input);
 extern void del_aubio_scale(aubio_scale_t *s);
 
@@ -240,7 +240,6 @@ aubio_pitchdetection_t * new_aubio_pitchdetection(uint_t bufsize,
 /* pitch mcomb */
 aubio_pitchmcomb_t * new_aubio_pitchmcomb(uint_t bufsize, uint_t hopsize, uint_t channels, uint_t samplerate);
 smpl_t aubio_pitchmcomb_do (aubio_pitchmcomb_t * p, cvec_t * fftgrain);
-uint_t aubio_pitch_cands(aubio_pitchmcomb_t * p, cvec_t * fftgrain, smpl_t * cands);
 void del_aubio_pitchmcomb (aubio_pitchmcomb_t *p);
 
 /* pitch yin */
index c35111b56478f3872a1ae2766d828c765358b087..ee2bfa6e1e662051be75cbc413e145d1dfa1d681 100644 (file)
@@ -6,7 +6,7 @@ int main(){
         uint_t channels   = 1;                          /* number of channel */
         fvec_t * in       = new_fvec (win_s, channels); /* input buffer */
         aubio_scale_t * o = new_aubio_scale(0,1,2,3);
-        aubio_scale_set(o,0,1,2,3);
+        aubio_scale_set_limits (o,0,1,2,3);
         uint_t i = 0;
 
         while (i < 1000) {