There is a small typo in src/effects/pitchshift.h, src/effects/timestretch.h, src/pitch/pitch.h.
Should read `successful` rather than `successfull`.
pitchscale is a frequency ratio. It should be in the range [0.25, 4].
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o,
\param transpose new pitch transposition of the pitch shifting object,
expressed in semitones (should be in the range [-24;+24])
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o,
\param stretch new time stretching ratio of the time stretching object
(should be in the range [0.025; 10.])
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_timestretch_set_stretch (aubio_timestretch_t * o, smpl_t stretch);
pitchscale is a frequency ratio. It should be in the range [0.25, 4].
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o,
\param transpose new pitch transposition of the time stretching object,
expressed in semitones (should be in the range [-24;+24])
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o,
mode can be one of "Hz", "midi", "cent", or "bin". Defaults to "Hz".
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_pitch_set_unit (aubio_pitch_t * o, const char_t * mode);
\param o pitch detection object as returned by new_aubio_pitch()
\param silence level threshold under which pitch should be ignored, in dB
- \return 0 if successfull, non-zero otherwise
+ \return 0 if successful, non-zero otherwise
*/
uint_t aubio_pitch_set_silence (aubio_pitch_t * o, smpl_t silence);