native: rework handling of seeks that depend on variables the client does not know anything about

All seeks/flushes that depend on the playback buffer read pointer cannot
be accounted for properly in the client since it does not know the
actual read pointer. Due to that the clients do not account for it at
all. We need do the same on the server side. And we did, but a little
bit too extreme. While we properly have not applied the changes to the
"request" counter we still do have to apply it to the "missing" counter.
This patch fixes that.
This commit is contained in:
Lennart Poettering 2010-01-18 01:33:04 +01:00 committed by Colin Guthrie
parent d090995262
commit 66cfa72eb4
7 changed files with 20 additions and 9 deletions

View file

@ -2154,6 +2154,11 @@ pa_operation* pa_stream_flush(pa_stream *s, pa_stream_success_cb_t cb, void *use
* index, but the read index might jump. */
invalidate_indexes(s, TRUE, FALSE);
/* Note that we do not update requested_bytes here. This is
* because we cannot really know how data actually was dropped
* from the write index due to this. This 'error' will be applied
* by both client and server and hence we should be fine. */
return o;
}