mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-04 13:30:12 -05:00
stream: fix internal method call
This commit is contained in:
parent
428cb5de75
commit
51d1569114
2 changed files with 2 additions and 2 deletions
|
|
@ -502,7 +502,7 @@ static int check_param_io(void *data, int seq, uint32_t id,
|
||||||
SPA_PARAM_IO_size, SPA_POD_Int(&psize)) < 0)
|
SPA_PARAM_IO_size, SPA_POD_Int(&psize)) < 0)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
pw_log_debug("port %p: got control %s", port,
|
pw_log_debug("port %p: got io %s", port,
|
||||||
spa_debug_type_find_name(spa_type_io, pid));
|
spa_debug_type_find_name(spa_type_io, pid));
|
||||||
|
|
||||||
switch (pid) {
|
switch (pid) {
|
||||||
|
|
|
||||||
|
|
@ -1468,7 +1468,7 @@ do_process(struct spa_loop *loop,
|
||||||
bool async, uint32_t seq, const void *data, size_t size, void *user_data)
|
bool async, uint32_t seq, const void *data, size_t size, void *user_data)
|
||||||
{
|
{
|
||||||
struct stream *impl = user_data;
|
struct stream *impl = user_data;
|
||||||
int res = impl_node_process_output(&impl->impl_node);
|
int res = impl_node_process_output(impl);
|
||||||
return spa_node_call_ready(&impl->callbacks, res);
|
return spa_node_call_ready(&impl->callbacks, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue