Changeset ce0dfe9


Ignore:
Timestamp:
Sep 21, 2016, 4:55:34 PM (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:
9953f09
Parents:
d5f538f
Message:

src/effects/pitchshift.c: fix lower pitchscale limit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.c

    rd5f538f rce0dfe9  
    138138aubio_pitchshift_set_pitchscale (aubio_pitchshift_t * p, smpl_t pitchscale)
    139139{
    140   if (pitchscale >= 0.0625  && pitchscale <= 4.) {
     140  if (pitchscale >= 0.25  && pitchscale <= 4.) {
    141141    p->pitchscale = pitchscale;
    142142    rubberband_set_pitch_scale(p->rb, p->pitchscale);
Note: See TracChangeset for help on using the changeset viewer.