From c6d44b67e15c0f448d256172d82ff31059bbd6b1 Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 26 Dec 2025 19:26:43 +1000 Subject: [PATCH] PulseAudio: Stop firing the stop callback in response to a suspension. --- miniaudio.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index feef3830..061946c8 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -32448,10 +32448,8 @@ static void ma_device_on_suspended__pulseaudio(ma_pa_stream* pStream, void* pUse if (suspended == 1) { ma_log_post(ma_device_get_log(pDevice), MA_LOG_LEVEL_DEBUG, "[Pulse] Device suspended state changed. Suspended."); - ma_device_post_notification_stopped(pDevice); } else { ma_log_post(ma_device_get_log(pDevice), MA_LOG_LEVEL_DEBUG, "[Pulse] Device suspended state changed. Resumed."); - ma_device_post_notification_started(pDevice); } }