client-stream: don't run the driver

The driver will take the initiative to run the graph
This commit is contained in:
Wim Taymans 2018-07-11 20:09:32 +02:00
parent fdc3d5c0f7
commit 54c45252fd

View file

@ -805,7 +805,7 @@ static int impl_node_process(struct spa_node *node)
else else
trigger = status & SPA_STATUS_HAVE_BUFFER; trigger = status & SPA_STATUS_HAVE_BUFFER;
if (trigger) if (trigger && !impl->this.node->driver)
spa_graph_run(impl->client_node->node->rt.root.graph); spa_graph_run(impl->client_node->node->rt.root.graph);
return status; return status;