Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
David Braun committed Jun 11, 2022
1 parent 1c2e4f8 commit 6be3342
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/FaustProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ FaustProcessor::clear()
SAFE_DELETE(m_dsp_poly);

// deleteAllDSPFactories(); // don't actually do this!!
deleteDSPFactory(m_factory);
deleteDSPFactory(m_factory); m_factory = nullptr;
SAFE_DELETE(m_poly_factory);
}

Expand Down
4 changes: 2 additions & 2 deletions Source/PlaybackWarpProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ void PlaybackWarpProcessor::defaultRubberBandOptions() {
//options |= RubberBandStretcher::OptionProcessOffline;
options |= RubberBandStretcher::OptionProcessRealTime;

options |= RubberBandStretcher::OptionStretchElastic;
//options |= RubberBandStretcher::OptionStretchPrecise;
//options |= RubberBandStretcher::OptionStretchElastic;
options |= RubberBandStretcher::OptionStretchPrecise;

options |= RubberBandStretcher::OptionTransientsCrisp;
//options |= RubberBandStretcher::OptionTransientsMixed;
Expand Down

0 comments on commit 6be3342

Please sign in to comment.