From 4b13ca5be1601a8dee4c9b03579c7c7d187a5f3c Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Thu, 27 Feb 2025 00:51:47 -0800 Subject: [PATCH] Bug Fix: Clear counter correctly on reset This reset was missing. Signed-off-by: Christopher Snowhill --- Audio/Chain/ChunkList.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Audio/Chain/ChunkList.m b/Audio/Chain/ChunkList.m index eeb1a6439..1e61ecdf5 100644 --- a/Audio/Chain/ChunkList.m +++ b/Audio/Chain/ChunkList.m @@ -448,6 +448,7 @@ static void convert_be_to_le(uint8_t *buffer, size_t bitsPerSample, size_t bytes @synchronized(chunkList) { [chunkList removeAllObjects]; listDuration = 0.0; + listDurationRatioed = 0.0; } }