Changeset 29e8f52 for src/effects/pitchshift.c
- Timestamp:
- Sep 17, 2016, 3:32:32 AM (8 years ago)
- Branches:
- feature/cnn, feature/crepe, feature/pitchshift, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch
- Children:
- 0ae2eb8
- Parents:
- 8e1328f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/effects/pitchshift.c
r8e1328f r29e8f52 56 56 p->pitchscale = pitchscale; 57 57 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; 60 64 p->rb = rubberband_new(samplerate, 1, p->rboptions, p->timeratio, p->pitchscale); 61 65 rubberband_set_max_process_size(p->rb, p->hopsize * 4);
Note: See TracChangeset
for help on using the changeset viewer.