pulse-server: also advance read pointer in underrun

So that we ask for more data from the client.

Also retested with #2799 that caused this regression.

Fixes #2821
This commit is contained in:
Wim Taymans 2022-11-10 16:13:33 +01:00
parent 38382d002d
commit b720da771e

View file

@ -1433,10 +1433,11 @@ static void stream_process(void *data)
stream->buffer, MAXLENGTH,
index % MAXLENGTH,
p, avail);
index += avail;
pd.read_inc = avail;
spa_ringbuffer_read_update(&stream->ring, index);
}
index += size;
pd.read_inc = size;
spa_ringbuffer_read_update(&stream->ring, index);
pd.playing_for = size;
}
pw_log_debug("%p: [%s] underrun read:%u avail:%d max:%u",