From 0cfd52074b50df623f9fa9fd9ad0ba4657311398 Mon Sep 17 00:00:00 2001 From: Misaki Kasumi Date: Tue, 7 May 2024 22:43:35 +0800 Subject: [PATCH] ao: in ao_play_data, wakeup core for untimed AO as well --- audio/out/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/out/buffer.c b/audio/out/buffer.c index d64e74fa92..089724f2f9 100644 --- a/audio/out/buffer.c +++ b/audio/out/buffer.c @@ -629,7 +629,7 @@ static bool ao_play_data(struct ao *ao) struct mp_pcm_state state; get_dev_state(ao, &state); - if (p->streaming && !state.playing && !ao->untimed) + if (p->streaming && !state.playing) goto eof; void **planes = NULL;