Changeset 24dc867 for src/effects
- Timestamp:
- Dec 7, 2018, 1:28:57 AM (6 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/timestretch, fix/ffmpeg5, master
- Children:
- a77f0c6
- Parents:
- 124acfb
- git-author:
- Paul Brossier <piem@piem.org> (10/26/18 10:56:48)
- git-committer:
- Paul Brossier <piem@piem.org> (12/07/18 01:28:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift_rubberband.c
r124acfb r24dc867 79 79 fvec_t *zeros = new_fvec(p->hopsize); 80 80 while (available <= (int)latency) { 81 rubberband_process(p->rb, (const float* const*)&(zeros->data), p->hopsize, 0); 81 rubberband_process(p->rb, 82 (const float* const*)&(zeros->data), p->hopsize, 0); 82 83 available = rubberband_available(p->rb); 83 84 } … … 150 151 rubberband_retrieve(p->rb, (float* const*)&(out->data), p->hopsize); 151 152 } else { 152 AUBIO_WRN("pitchshift: catching up with zeros , only %d available, needed: %d,"153 " current pitchscale: %f\n",153 AUBIO_WRN("pitchshift: catching up with zeros" 154 ", only %d available, needed: %d, current pitchscale: %f\n", 154 155 rubberband_available(p->rb), p->hopsize, p->pitchscale); 155 156 fvec_zeros(out);
Note: See TracChangeset
for help on using the changeset viewer.