Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.h

    r683d52f5 r124acfb  
    4646
    4747*/
    48 void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in, fvec_t * out);
     48void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in,
     49        fvec_t * out);
    4950
    5051/** deletion of the pitch shifting object
     
    8283  \param pitchscale new pitch scale of the pitch shifting object
    8384
     85  pitchscale is a frequency ratio. It should be in the range [0.25, 4].
     86
    8487  \return 0 if successfull, non-zero otherwise
    8588
    8689*/
    87 uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o, smpl_t pitchscale);
     90uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o,
     91        smpl_t pitchscale);
    8892
    8993/** get the pitchscale of the pitch shifting object
     
    99103
    100104  \param o pitch shifting object as returned by new_aubio_pitchshift()
    101   \param transpose new pitch transposition of the pitch shifting object, expressed
    102   in semitones (should be in the range [-24;+24])
     105  \param transpose new pitch transposition of the pitch shifting object,
     106  expressed in semitones (should be in the range [-24;+24])
    103107
    104108  \return 0 if successfull, non-zero otherwise
    105109
    106110*/
    107 uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o, smpl_t transpose);
     111uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o,
     112        smpl_t transpose);
    108113
    109114/** get the transposition of the pitch shifting object, in semitones
Note: See TracChangeset for help on using the changeset viewer.