From 83dc2fe40716f97d4f07491a26746e025a4c4773 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 26 Mar 2022 17:53:45 -0600 Subject: [PATCH] evoral: change interpolation distance to match 6.x Note that the value is still defined in Beats (ticks) rather than seconds which means that the interpolation density is tempo-dependent. This should still likely change one day. --- libs/evoral/Sequence.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/evoral/Sequence.cc b/libs/evoral/Sequence.cc index 1453751278..45191ff5f5 100644 --- a/libs/evoral/Sequence.cc +++ b/libs/evoral/Sequence.cc @@ -58,7 +58,7 @@ using namespace PBD; XXX: This is a hack. The time should probably be expressed in seconds rather than beats, and should be configurable etc. etc. */ -static Temporal::Beats const time_between_interpolated_controller_outputs = Temporal::Beats::ticks (256); +static Temporal::Beats const time_between_interpolated_controller_outputs = Temporal::Beats::ticks (8); namespace Evoral {