mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
client-node: pass the right object to functions
These functions are not really used so not currently a problem.
This commit is contained in:
parent
7007ffcae1
commit
51c2b02e9e
1 changed files with 2 additions and 2 deletions
|
|
@ -1530,7 +1530,7 @@ impl_mix_port_enum_params(void *object, int seq,
|
||||||
if (port->direction != direction)
|
if (port->direction != direction)
|
||||||
return -ENOTSUP;
|
return -ENOTSUP;
|
||||||
|
|
||||||
return impl_node_port_enum_params(&port->impl->node, seq, direction, port->id,
|
return impl_node_port_enum_params(port->impl, seq, direction, port->id,
|
||||||
id, start, num, filter);
|
id, start, num, filter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1602,7 +1602,7 @@ static int
|
||||||
impl_mix_port_reuse_buffer(void *object, uint32_t port_id, uint32_t buffer_id)
|
impl_mix_port_reuse_buffer(void *object, uint32_t port_id, uint32_t buffer_id)
|
||||||
{
|
{
|
||||||
struct port *p = object;
|
struct port *p = object;
|
||||||
return impl_node_port_reuse_buffer(&p->impl->node, p->id, buffer_id);
|
return impl_node_port_reuse_buffer(p->impl, p->id, buffer_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int impl_mix_process(void *object)
|
static int impl_mix_process(void *object)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue