From d6b7ed467ecdab826227e92900810db77898ba93 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 11 Feb 2025 18:12:06 -0800 Subject: [PATCH] Output: Remove pointless scale value This shouldn't have been applied, the problem with Rubber Band was the flushing mechanism. Signed-off-by: Christopher Snowhill --- Audio/Output/OutputCoreAudio.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Audio/Output/OutputCoreAudio.m b/Audio/Output/OutputCoreAudio.m index 830dbc74a..47be2a4b9 100644 --- a/Audio/Output/OutputCoreAudio.m +++ b/Audio/Output/OutputCoreAudio.m @@ -418,7 +418,7 @@ current_device_listener(AudioObjectID inObjectID, UInt32 inNumberAddresses, cons } - (BOOL)processEndOfStream { - if(stopping || ([outputController endOfStream] == YES && [self signalEndOfStream:secondsLatency / tempo])) { + if(stopping || ([outputController endOfStream] == YES && [self signalEndOfStream:secondsLatency])) { stopping = YES; return YES; }