remote-node: process the mixer if io status have HAVE_DATA flag

Needed for audio sources created locally
This commit is contained in:
Julian Bouzas 2020-07-06 11:57:03 -04:00
parent cf8db93cd4
commit f75dfde89c

View file

@ -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,
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_node_process(p->mix);
}