Changes in src/effects/pitchshift.h [683d52f5:124acfb]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift.h
r683d52f5 r124acfb 46 46 47 47 */ 48 void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in, fvec_t * out); 48 void aubio_pitchshift_do (aubio_pitchshift_t * o, const fvec_t * in, 49 fvec_t * out); 49 50 50 51 /** deletion of the pitch shifting object … … 82 83 \param pitchscale new pitch scale of the pitch shifting object 83 84 85 pitchscale is a frequency ratio. It should be in the range [0.25, 4]. 86 84 87 \return 0 if successfull, non-zero otherwise 85 88 86 89 */ 87 uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o, smpl_t pitchscale); 90 uint_t aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * o, 91 smpl_t pitchscale); 88 92 89 93 /** get the pitchscale of the pitch shifting object … … 99 103 100 104 \param o pitch shifting object as returned by new_aubio_pitchshift() 101 \param transpose new pitch transposition of the pitch shifting object, expressed102 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]) 103 107 104 108 \return 0 if successfull, non-zero otherwise 105 109 106 110 */ 107 uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o, smpl_t transpose); 111 uint_t aubio_pitchshift_set_transpose (aubio_pitchshift_t * o, 112 smpl_t transpose); 108 113 109 114 /** get the transposition of the pitch shifting object, in semitones
Note: See TracChangeset
for help on using the changeset viewer.