mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
impl-node: don't do output mix for remote nodes
Remote nodes already did the output mix remotely so we don't have to attempt it on the server (and it doesn't actually have output mixers).
This commit is contained in:
parent
f756eebac5
commit
75d7c574cf
1 changed files with 3 additions and 2 deletions
|
|
@ -1818,8 +1818,9 @@ again:
|
|||
a->status = PW_NODE_ACTIVATION_FINISHED;
|
||||
a->finish_time = nsec;
|
||||
}
|
||||
|
||||
if (status & SPA_STATUS_HAVE_DATA) {
|
||||
if (!node->remote && (status & SPA_STATUS_HAVE_DATA)) {
|
||||
/* remote nodes have done the output mix already before
|
||||
* they triggered the ready event */
|
||||
spa_list_for_each(p, &node->rt.output_mix, rt.node_link)
|
||||
spa_node_process(p->mix);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue