From 5d1c089d15a25b1c88babd847df3571f403b543c Mon Sep 17 00:00:00 2001 From: David Reid Date: Fri, 26 Dec 2025 19:16:43 +1000 Subject: [PATCH] OpenSL: Stop double-posting the stop callback. --- miniaudio.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index a72eb901..932254be 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -42963,9 +42963,6 @@ static ma_result ma_device_stop__opensl(ma_device* pDevice) MA_OPENSL_BUFFERQUEUE(pDeviceStateOpenSL->pBufferQueuePlayback)->Clear((SLAndroidSimpleBufferQueueItf)pDeviceStateOpenSL->pBufferQueuePlayback); } - /* Make sure the client is aware that the device has stopped. There may be an OpenSL|ES callback for this, but I haven't found it. */ - ma_device_post_notification_stopped(pDevice); - return MA_SUCCESS; }