client-node: ignore io on the node itself

We only handle the io on the mixer ports, the internal io from the
port to the node is done on the client side.
This commit is contained in:
Wim Taymans 2019-03-11 16:43:43 +01:00
parent 61ad5ee518
commit d3d7b7e39f

View file

@ -792,13 +792,10 @@ impl_node_port_set_io(struct spa_node *node,
uint32_t id, uint32_t id,
void *data, size_t size) void *data, size_t size)
{ {
struct node *this; /* ignore io on the node itself, weonly care about the io on the
struct impl *impl; * port mixers, the io on the node ports itself is handled on the
* client side */
this = SPA_CONTAINER_OF(node, struct node, node); return 0;
impl = this->impl;
return do_port_set_io(impl, direction, port_id, SPA_ID_INVALID, id, data, size);
} }
static int static int