Changeset 29e8f52


Ignore:
Timestamp:
Sep 17, 2016, 3:32:32 AM (8 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
Children:
0ae2eb8
Parents:
8e1328f
Message:

src/effects/pitchshift.c: clean-up options, set to default

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/effects/pitchshift.c

    r8e1328f r29e8f52  
    5656  p->pitchscale = pitchscale;
    5757
    58   p->rboptions = RubberBandOptionProcessRealTime || RubberBandOptionPitchHighConsistency;
    59   p->rboptions = p->rboptions || RubberBandOptionTransientsCrisp;
     58  p->rboptions = RubberBandOptionProcessRealTime;
     59  //p->rboptions |= RubberBandOptionTransientsCrisp;
     60  //p->rboptions |= RubberBandOptionWindowStandard;
     61  //p->rboptions |= RubberBandOptionSmoothingOff;
     62  //p->rboptions |= RubberBandOptionFormantShifted;
     63  //p->rboptions |= RubberBandOptionPitchHighConsistency;
    6064  p->rb = rubberband_new(samplerate, 1, p->rboptions, p->timeratio, p->pitchscale);
    6165  rubberband_set_max_process_size(p->rb, p->hopsize * 4);
Note: See TracChangeset for help on using the changeset viewer.