From c9565266f2daf3ea54169e73a9a6d9fd24564c57 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Thu, 18 Aug 2022 14:27:57 +0100 Subject: [PATCH] Adjust the limits, with performance in mind - to be auditioned --- src/finer/R3Stretcher.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/finer/R3Stretcher.h b/src/finer/R3Stretcher.h index b3032ae..daf9090 100644 --- a/src/finer/R3Stretcher.h +++ b/src/finer/R3Stretcher.h @@ -117,9 +117,10 @@ protected: maxInhop(1024) { if (options & RubberBandStretcher::OptionWindowShort) { // See note in calculateHop + minPreferredOuthop = 256; maxPreferredOuthop = 640; maxInhopWithReadahead = 512; - maxInhop = 1024; + maxInhop = 1560; } } };