mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
node: fix support for remote driver nodes
This commit is contained in:
parent
c725f1f7b6
commit
a7341ce583
8 changed files with 106 additions and 77 deletions
|
|
@ -77,9 +77,13 @@ static void on_timeout(void *userdata, uint64_t expirations)
|
|||
uint8_t *p, *map;
|
||||
struct spa_meta_header *h;
|
||||
|
||||
pw_log_trace("timeout");
|
||||
|
||||
id = pw_stream_get_empty_buffer(data->stream);
|
||||
if (id == SPA_ID_INVALID)
|
||||
if (id == SPA_ID_INVALID) {
|
||||
pw_log_warn("out of buffers");
|
||||
return;
|
||||
}
|
||||
|
||||
buf = pw_stream_peek_buffer(data->stream, id);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue