From 78fe234bfe09a7443b5abdbc4764dc3dd591508c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 29 Apr 2025 09:17:35 +0200 Subject: [PATCH] netjack2: copy the node.group to streams Just in case we want them to be scheduled in the same group. --- src/modules/module-netjack2-manager.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/module-netjack2-manager.c b/src/modules/module-netjack2-manager.c index 5c2bb854e..432fb6e47 100644 --- a/src/modules/module-netjack2-manager.c +++ b/src/modules/module-netjack2-manager.c @@ -1309,6 +1309,7 @@ int pipewire__module_init(struct pw_impl_module *module, const char *args) copy_props(impl, props, PW_KEY_NODE_LOOP_NAME); copy_props(impl, props, PW_KEY_NODE_VIRTUAL); copy_props(impl, props, PW_KEY_NODE_NETWORK); + copy_props(impl, props, PW_KEY_NODE_GROUP); copy_props(impl, props, PW_KEY_NODE_LINK_GROUP); copy_props(impl, props, PW_KEY_NODE_ALWAYS_PROCESS); copy_props(impl, props, PW_KEY_NODE_LOCK_QUANTUM);