Changeset 124acfb for src/effects
- Timestamp:
- Dec 7, 2018, 1:28:56 AM (6 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
- Children:
- 24dc867
- Parents:
- 24198a1
- git-author:
- Paul Brossier <piem@piem.org> (10/24/18 18:48:25)
- git-committer:
- Paul Brossier <piem@piem.org> (12/07/18 01:28:56)
- Location:
- src/effects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift.h
r24198a1 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 … … 87 88 88 89 */ 89 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); 90 92 91 93 /** get the pitchscale of the pitch shifting object … … 101 103 102 104 \param o pitch shifting object as returned by new_aubio_pitchshift() 103 \param transpose new pitch transposition of the pitch shifting object, expressed104 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]) 105 107 106 108 \return 0 if successfull, non-zero otherwise 107 109 108 110 */ 109 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); 110 113 111 114 /** get the transposition of the pitch shifting object, in semitones -
src/effects/timestretch.h
r24198a1 r124acfb 53 53 54 54 */ 55 void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out, uint_t * read); 55 void aubio_timestretch_do (aubio_timestretch_t * o, fvec_t * out, 56 uint_t * read); 56 57 57 58 /** deletion of the time stretching object … … 84 85 85 86 */ 86 sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in, uint_t length); 87 sint_t aubio_timestretch_push(aubio_timestretch_t * o, fvec_t *in, 88 uint_t length); 87 89 88 90 /** get number of currently available samples from time stretching object … … 147 149 148 150 */ 149 uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o, smpl_t pitchscale); 151 uint_t aubio_timestretch_set_pitchscale (aubio_timestretch_t * o, 152 smpl_t pitchscale); 150 153 151 154 /** get the pitchscale of the time stretching object … … 161 164 162 165 \param o time stretching object as returned by new_aubio_timestretch() 163 \param transpose new pitch transposition of the time stretching object, expressed 164 in semitones (should be in the range [-24;+24]) 166 167 \param transpose new pitch transposition of the time stretching object, 168 expressed in semitones (should be in the range [-24;+24]) 165 169 166 170 \return 0 if successfull, non-zero otherwise 167 171 168 172 */ 169 uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o, smpl_t transpose); 173 uint_t aubio_timestretch_set_transpose (aubio_timestretch_t * o, 174 smpl_t transpose); 170 175 171 176 /** get the transposition of the time stretching object, in semitones
Note: See TracChangeset
for help on using the changeset viewer.