Changeset 6e8aa74


Ignore:
Timestamp:
Sep 21, 2016, 11:26:10 AM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
8ba8bbe
Parents:
aef9691
Message:

src/effects/pitchshift.c: avoid signed/unsigned comparison

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.c

    raef9691 r6e8aa74  
    104104  int available = rubberband_available(p->rb);
    105105  fvec_t *zeros = new_fvec(p->hopsize);
    106   while (available <= latency) {
     106  while (available <= (int)latency) {
    107107    rubberband_process(p->rb, (const float* const*)&(zeros->data), p->hopsize, 0);
    108108    available = rubberband_available(p->rb);
Note: See TracChangeset for help on using the changeset viewer.