rename vec_min and vec_min_elem to fvec_min and fvec_max_elem
authorPaul Brossier <piem@piem.org>
Thu, 1 Oct 2009 23:11:37 +0000 (01:11 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 1 Oct 2009 23:11:37 +0000 (01:11 +0200)
src/mathutils.c
src/mathutils.h
src/pitch/pitchyin.c
src/pitch/pitchyinfft.c
src/utils/hist.c
swig/aubio.i
tests/src/test-filterbank.c

index 1f8f3954cd339904dcee8516982b641c0523d1e9..5cd6fe5747372bfa68deff0b032ae4087fa89f78 100644 (file)
@@ -110,7 +110,7 @@ smpl_t fvec_max(fvec_t *s) {
   return tmp;
 }
 
-smpl_t vec_min(fvec_t *s) {
+smpl_t fvec_min(fvec_t *s) {
   uint_t i,j;
   smpl_t tmp = s->data[0][0];
   for (i=0; i < s->channels; i++)
@@ -119,7 +119,7 @@ smpl_t vec_min(fvec_t *s) {
   return tmp;
 }
 
-uint_t vec_min_elem(fvec_t *s) {
+uint_t fvec_min_elem(fvec_t *s) {
   uint_t i,j=0, pos=0.;
   smpl_t tmp = s->data[0][0];
   for (i=0; i < s->channels; i++)
@@ -183,7 +183,7 @@ smpl_t vec_alpha_norm(fvec_t * DF, smpl_t alpha) {
 void vec_dc_removal(fvec_t * mag) {
     smpl_t mini = 0.;
     uint_t length = mag->length, i=0, j;
-    mini = vec_min(mag);
+    mini = fvec_min(mag);
     for (j=0;j<length;j++) {
       mag->data[i][j] -= mini;
     }
index 3e4744684ade4972d35ab20291361259f0d885c6..6014756f00eb6602e7ac31d4ae8dbfdcefd258c8 100644 (file)
@@ -77,12 +77,12 @@ smpl_t fvec_max(fvec_t *s);
  *
  * \bug mono 
  */
-smpl_t vec_min(fvec_t *s);
+smpl_t fvec_min(fvec_t *s);
 /** returns the index of the min of a vector
  *
  * \bug mono 
  */
-uint_t vec_min_elem(fvec_t *s);
+uint_t fvec_min_elem(fvec_t *s);
 /** returns the index of the max of a vector
  *
  * \bug mono 
index 28da6ec46097a7d036cb2879ded1a860ba46b977..78d13ff3ff40cf7d2cc1a1e919b1dfd64a756709 100644 (file)
@@ -109,7 +109,7 @@ smpl_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t * yin, smpl_t tol){
       return vec_quadint(yin,period,1);
     }
   }
-  return vec_quadint(yin,vec_min_elem(yin),1);
+  return vec_quadint(yin,fvec_min_elem(yin),1);
   //return 0;
 }
 
index 862a48375d6fa8b2c65d25058ddc7f8fc64095fe..8d8d0314086a7957746f5806263440f0e7b46e00 100644 (file)
@@ -119,7 +119,7 @@ smpl_t aubio_pitchyinfft_detect(aubio_pitchyinfft_t * p, fvec_t * input, smpl_t
     tmp += yin->data[0][tau];
     yin->data[0][tau] *= tau/tmp;
   }
-  tau = vec_min_elem(yin);
+  tau = fvec_min_elem(yin);
   if (yin->data[0][tau] < tol) {
     /* no interpolation */
     //return tau;
index 9e8d2709c8afac2c7ebd6b2e8370a361d2a60469..50ee970560bb319718f3c425556b6d215adc89cf 100644 (file)
@@ -19,7 +19,7 @@
 #include "aubio_priv.h"
 #include "fvec.h"
 #include "utils/scale.h"
-#include "mathutils.h" //vec_min fvec_max
+#include "mathutils.h" //fvec_min fvec_max
 #include "utils/hist.h"
 
 /********
@@ -108,7 +108,7 @@ void aubio_hist_do_notnull (aubio_hist_t *s, fvec_t *input) {
 void aubio_hist_dyn_notnull (aubio_hist_t *s, fvec_t *input) {
   uint_t i,j;
   sint_t tmp = 0;
-  smpl_t ilow = vec_min(input);
+  smpl_t ilow = fvec_min(input);
   smpl_t ihig = fvec_max(input);
   smpl_t step = (ihig-ilow)/(smpl_t)(s->nelems);
 
index 3933391c18302f3668006e404e5e3c26231092c0..8900bf144fa92a484d1058ffa8749ab2e5860f42 100644 (file)
@@ -131,8 +131,8 @@ fvec_t * new_aubio_window(uint_t size, aubio_window_type wintype);
 smpl_t aubio_unwrap2pi (smpl_t phase);
 smpl_t fvec_mean(fvec_t *s);
 smpl_t fvec_max(fvec_t *s);
-smpl_t vec_min(fvec_t *s);
-uint_t vec_min_elem(fvec_t *s);
+smpl_t fvec_min(fvec_t *s);
+uint_t fvec_min_elem(fvec_t *s);
 uint_t fvec_max_elem(fvec_t *s);
 void vec_shift(fvec_t *s);
 smpl_t vec_sum(fvec_t *s);
index 44c970422aedaed60d6c0eb8cf473f6d75a5197f..ba66a23a9df06cd011c5a5fbffe2bd79e51e4215 100644 (file)
@@ -24,7 +24,7 @@ main (void)
     return -1;
   }
 
-  if (vec_min (coeffs) != 0.) {
+  if (fvec_min (coeffs) != 0.) {
     return -1;
   }