From 5ac3d2c5815766b31ae3f582714b79913bce33ae Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 6 Aug 2021 13:39:22 -0600 Subject: [PATCH] triggerbox: we're doing offline RB processing, not realtime --- libs/ardour/triggerbox.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/triggerbox.cc b/libs/ardour/triggerbox.cc index 8a8a96aecb..f3078c85bc 100644 --- a/libs/ardour/triggerbox.cc +++ b/libs/ardour/triggerbox.cc @@ -522,7 +522,7 @@ AudioTrigger::set_length (timecnt_t const & newlen) const uint32_t nchans = ar->n_channels(); - RubberBandStretcher::Options options = RubberBandStretcher::Option (RubberBandStretcher::OptionProcessRealTime|RubberBandStretcher::OptionStretchPrecise); + RubberBandStretcher::Options options = RubberBandStretcher::Option (RubberBandStretcher::OptionProcessOffline|RubberBandStretcher::OptionStretchPrecise); RubberBandStretcher stretcher (_box.session().sample_rate(), nchans, options, 1.0, 1.0); /* Compute stretch ratio */