Commit d33aa010 authored by Max Kellermann's avatar Max Kellermann

output/pipewire: reset the "paused" flag

This was missing in commit 4d1ce702
parent bd893e63
...@@ -427,8 +427,10 @@ PipeWireOutput::Play(const void *chunk, size_t size) ...@@ -427,8 +427,10 @@ PipeWireOutput::Play(const void *chunk, size_t size)
{ {
const PipeWire::ThreadLoopLock lock(thread_loop); const PipeWire::ThreadLoopLock lock(thread_loop);
if (paused) if (paused) {
paused = false;
pw_stream_set_active(stream, true); pw_stream_set_active(stream, true);
}
while (true) { while (true) {
CheckThrowError(); CheckThrowError();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment