mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-21 08:56:56 -05:00
remote-node: process the mixer if io status have HAVE_DATA flag
Needed for audio sources created locally
This commit is contained in:
parent
cf8db93cd4
commit
f75dfde89c
1 changed files with 1 additions and 1 deletions
|
|
@ -1093,7 +1093,7 @@ static int node_ready(void *d, int status)
|
||||||
pw_log_trace("node %p: ready driver:%d exported:%d status:%d", node,
|
pw_log_trace("node %p: ready driver:%d exported:%d status:%d", node,
|
||||||
node->driver, node->exported, status);
|
node->driver, node->exported, status);
|
||||||
|
|
||||||
if (status == SPA_STATUS_HAVE_DATA) {
|
if (status & SPA_STATUS_HAVE_DATA) {
|
||||||
spa_list_for_each(p, &node->rt.output_mix, rt.node_link)
|
spa_list_for_each(p, &node->rt.output_mix, rt.node_link)
|
||||||
spa_node_process(p->mix);
|
spa_node_process(p->mix);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue