From 3dbde22f618b60efef1ce55b2637e6014fc876bb Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Sat, 8 Mar 2025 00:38:00 -0800 Subject: [PATCH] Core Audio: Slight change to audio fade in on seek Signed-off-by: Christopher Snowhill --- Audio/AudioPlayer.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Audio/AudioPlayer.m b/Audio/AudioPlayer.m index 128c9bd13..49c2ec9d3 100644 --- a/Audio/AudioPlayer.m +++ b/Audio/AudioPlayer.m @@ -84,9 +84,6 @@ } [output setupWithInterval:resumeInterval]; [output setVolume:volume]; - if(resumeInterval) { - [output fadeIn]; - } @synchronized(chainQueue) { for(id anObject in chainQueue) { [anObject setShouldContinue:NO]; @@ -126,6 +123,7 @@ } if(time > 0.0) { + [output fadeIn]; [output seek:time]; [bufferChain seek:time]; }