Changeset 24dc867


Ignore:
Timestamp:
Dec 7, 2018, 1:28:57 AM (5 years ago)
Author:
Paul Brossier <piem@piem.org>
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)
Message:

[pitchscale] wrap long lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift_rubberband.c

    r124acfb r24dc867  
    7979  fvec_t *zeros = new_fvec(p->hopsize);
    8080  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);
    8283    available = rubberband_available(p->rb);
    8384  }
     
    150151    rubberband_retrieve(p->rb, (float* const*)&(out->data), p->hopsize);
    151152  } 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",
    154155        rubberband_available(p->rb), p->hopsize, p->pitchscale);
    155156    fvec_zeros(out);
Note: See TracChangeset for help on using the changeset viewer.