https://bugs.freedesktop.org/show_bug.cgi?id=103103
--- Comment #6 from [email protected] ---
It seems that change presented below correct the problem. Verification and
better understanding is needed.
diff --git a/src/pulsecore/memblockq.c b/src/pulsecore/memblockq.c
index b132dd3..1db4ec2 100644
--- a/src/pulsecore/memblockq.c
+++ b/src/pulsecore/memblockq.c
@@ -251,10 +251,13 @@ static void write_index_changed(pa_memblockq *bq, int64_t
old_write_index, bool
delta = bq->write_index - old_write_index;
- if (account)
+ if (account) {
bq->requested -= delta;
- else
+ } else {
bq->missing -= delta;
+ if (bq->missing < 0)
+ bq->missing = 0;
+ }
--
You are receiving this mail because:
You are the assignee for the bug.
You are the QA Contact for the bug._______________________________________________
pulseaudio-bugs mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs