From e1576c53d495dcafe5272cc0176d00d55f539c76 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 9 Dec 2021 23:10:08 +0100 Subject: [PATCH] pulse-server: always ask for more data when underrun Ask for more data when we are in underrun and not corked. Fixes paplay and changing the quantum to something large. --- src/modules/module-protocol-pulse/pulse-server.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/modules/module-protocol-pulse/pulse-server.c b/src/modules/module-protocol-pulse/pulse-server.c index 22cb477f5..3d544b63e 100644 --- a/src/modules/module-protocol-pulse/pulse-server.c +++ b/src/modules/module-protocol-pulse/pulse-server.c @@ -1246,14 +1246,16 @@ static void stream_process(void *data) pd.underrun_for = size; pd.underrun = true; } - if (stream->attr.prebuf == 0 && !stream->corked) { + if (!stream->corked) { pd.missing = size; - pd.playing_for = size; - if (avail > 0) { - index += avail; - pd.read_inc = avail; + if (stream->attr.prebuf == 0) { + pd.playing_for = size; + if (avail > 0) { + index += avail; + pd.read_inc = avail; + } + spa_ringbuffer_read_update(&stream->ring, index); } - spa_ringbuffer_read_update(&stream->ring, index); } pw_log_debug("%p: [%s] underrun read:%u avail:%d max:%u", stream, client->name, index, avail, minreq);