Skip to content

Commit

Permalink
Merge pull request mixxxdj#11418 from Swiftb0y/feat/rubberband3-mono-…
Browse files Browse the repository at this point in the history
…compat

feat(engine): improve mono-compatibility for Rubberband R3.
  • Loading branch information
daschuer authored and napaalm committed Jul 11, 2023
1 parent 2187547 commit 3c31b6c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/engine/bufferscalers/enginebufferscalerubberband.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,11 @@ void EngineBufferScaleRubberBand::onSampleRateChanged() {
RubberBandStretcher::OptionProcessRealTime;
#if RUBBERBANDV3
if (m_useEngineFiner) {
rubberbandOptions |= RubberBandStretcher::OptionEngineFiner;
rubberbandOptions |=
RubberBandStretcher::OptionEngineFiner |
// Process Channels Together. otherwise the result is not
// mono-compatible. See #11361
RubberBandStretcher::OptionChannelsTogether;
}
#endif

Expand Down

0 comments on commit 3c31b6c

Please sign in to comment.