src/pitch: cosmetic changes
authorPaul Brossier <piem@piem.org>
Thu, 15 Oct 2009 13:09:07 +0000 (15:09 +0200)
committerPaul Brossier <piem@piem.org>
Thu, 15 Oct 2009 13:09:07 +0000 (15:09 +0200)
src/pitch/pitchdetection.h
src/pitch/pitchschmitt.h
src/pitch/pitchyin.h
src/pitch/pitchyinfft.h

index fe92d0132c8bda1e2d75d8435eccde61567a5f70..fa013fd4a10617d22c80580b32de006e1386ab69 100644 (file)
@@ -88,8 +88,8 @@ aubio_pitchdetection_t * new_aubio_pitchdetection(uint_t bufsize,
     uint_t hopsize,
     uint_t channels,
     uint_t samplerate,
-    aubio_pitchdetection_type type,
-    aubio_pitchdetection_mode mode);
+    aubio_pitchdetection_type pitch_type,
+    aubio_pitchdetection_mode pitch_mode);
 
 #ifdef __cplusplus
 }
index 198ad7eecaa87de5d7fc9512a026b76321bef333..676b22f7f54e91b9634fe63799e475a6411bd87e 100644 (file)
@@ -48,13 +48,13 @@ typedef struct _aubio_pitchschmitt_t aubio_pitchschmitt_t;
   \param output pitch period estimates, in samples
  
 */
-void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * input, fvec_t * output);
+void aubio_pitchschmitt_do (aubio_pitchschmitt_t *p, fvec_t * in, fvec_t * out);
 /** creation of the pitch detection object
  
   \param size size of the input buffer to analyse 
  
 */
-aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t size);
+aubio_pitchschmitt_t * new_aubio_pitchschmitt (uint_t bufsize);
 /** deletion of the pitch detection object
  
   \param p pitch detection object as returned by new_aubio_pitchschmitt 
index 797a733ba50aadb622bda2417098c78dda0c96e5..761896601c1769dd9deceb163cbda0d2848b70aa 100644 (file)
@@ -61,7 +61,7 @@ void del_aubio_pitchyin (aubio_pitchyin_t * o);
   \param tol tolerance parameter for minima selection [default 0.85] 
  
 */
-void aubio_pitchyin_do (aubio_pitchyin_t * o, fvec_t *in, fvec_t *out);
+void aubio_pitchyin_do (aubio_pitchyin_t * o, fvec_t * in, fvec_t * out);
 
 
 /** set tolerance parameter for YIN algorithm 
@@ -78,7 +78,7 @@ uint_t aubio_pitchyin_set_tolerance (aubio_pitchyin_t *o, smpl_t tol);
   \return tolerance parameter for minima selection [default 0.15]
 
 */
-smpl_t aubio_pitchyin_get_tolerance (aubio_pitchyin_t *o);
+smpl_t aubio_pitchyin_get_tolerance (aubio_pitchyin_t * o);
 
 #ifdef __cplusplus
 }
index 44c557e49bf81c67bd5ba289984bc3f5ac4009ac..7bc1d629b4c214d407ed303ba71074b02f5292ac 100644 (file)
@@ -48,7 +48,7 @@ typedef struct _aubio_pitchyinfft_t aubio_pitchyinfft_t;
   \param output pitch period candidates, in samples
  
 */
-void aubio_pitchyinfft_do (aubio_pitchyinfft_t *p, fvec_t * input, fvec_t * output);
+void aubio_pitchyinfft_do (aubio_pitchyinfft_t *p, fvec_t * in, fvec_t * out);
 /** creation of the pitch detection object
  
   \param bufsize size of the input buffer to analyse