From f8ee7e5e4615ca1e6e1cedf08bc6044c20d8a02f Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sun, 9 Mar 2025 14:43:06 -0700 Subject: [PATCH] Core Audio: Fix pausing glitches Signed-off-by: Christopher Snowhill --- Audio/Output/OutputCoreAudio.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Audio/Output/OutputCoreAudio.m b/Audio/Output/OutputCoreAudio.m index 729cbfdb6..264fa1187 100644 --- a/Audio/Output/OutputCoreAudio.m +++ b/Audio/Output/OutputCoreAudio.m @@ -169,12 +169,14 @@ current_device_listener(AudioObjectID inObjectID, UInt32 inNumberAddresses, cons rendered = NO; } +#if 0 if(faded && !paused) { resetting = YES; [self pause]; started = NO; resetting = NO; } +#endif if(!started && !paused) { // Prevent this call from hanging when used in this thread, when buffer may be empty