- Timestamp:
- Sep 18, 2016, 12:54:10 PM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- a6ba2ed1
- Parents:
- 0ae2eb8
- Location:
- src/effects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift.c
r0ae2eb8 r2d128da 98 98 } 99 99 100 uint_t aubio_pitchshift_get_latency (aubio_pitchshift_t * p) { 101 return rubberband_get_latency(p->rb); 102 } 103 100 104 uint_t 101 105 aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * p, smpl_t pitchscale) … … 189 193 } 190 194 195 uint_t aubio_pitchshift_get_latency (aubio_pitchshift_t * o UNUSED) { 196 return 0.; 197 } 198 191 199 // end of dummy implementation 192 200 -
src/effects/pitchshift.h
r0ae2eb8 r2d128da 68 68 smpl_t pitchscale, uint_t hop_size, uint_t samplerate); 69 69 70 /** get the latency of the pitch shifting object, in samples 71 72 \param o pitch shifting object as returned by ::new_aubio_pitchshift() 73 74 \return latency of the pitch shifting object in samples 75 76 */ 77 uint_t aubio_pitchshift_get_latency (aubio_pitchshift_t * o); 78 70 79 /** set the pitch scale of the pitch shifting object 71 80
Note: See TracChangeset
for help on using the changeset viewer.