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
}
\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
\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
\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
}
\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