summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMisaki Kasumi <misakikasumi@outlook.com>2024-05-07 22:43:35 +0800
committerKacper Michajłow <kasper93@gmail.com>2024-05-08 03:12:28 +0200
commit0cfd52074b50df623f9fa9fd9ad0ba4657311398 (patch)
tree04420ed7a392a6dce13380d915dc927e47652031
parente166ae0ed8980ac090097d81b218239723f007a0 (diff)
downloadmpv-0cfd52074b50df623f9fa9fd9ad0ba4657311398.tar.bz2
mpv-0cfd52074b50df623f9fa9fd9ad0ba4657311398.tar.xz
ao: in ao_play_data, wakeup core for untimed AO as well
-rw-r--r--audio/out/buffer.c2
1 files changed, 1 insertions, 1 deletions
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;