From 80cf968ae7f7d4b5118b7f9069f292b0894d5208 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 11 May 2021 13:02:40 +0200 Subject: [PATCH] stream: trigger the right process function Depending on the direction of the stream. --- src/pipewire/stream.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipewire/stream.c b/src/pipewire/stream.c index dcb4e94e6..617a20b07 100644 --- a/src/pipewire/stream.c +++ b/src/pipewire/stream.c @@ -1932,7 +1932,7 @@ do_process(struct spa_loop *loop, bool async, uint32_t seq, const void *data, size_t size, void *user_data) { struct stream *impl = user_data; - int res = impl_node_process_output(impl); + int res = impl->node_methods.process(impl); return spa_node_call_ready(&impl->callbacks, res); }