stream: fix internal method call

This commit is contained in:
Wim Taymans 2019-05-24 17:16:25 +02:00
parent 428cb5de75
commit 51d1569114
2 changed files with 2 additions and 2 deletions

View file

@ -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) {

View file

@ -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);
} }