From 9e7a5a4c3026dacc27ee2891d951dfe2b2b42939 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Mon, 7 Oct 2019 16:57:06 +0300 Subject: [PATCH] softdsp/convert: append the stream name on the new "object.path" key --- modules/module-pipewire/audio-softdsp-endpoint/convert.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/module-pipewire/audio-softdsp-endpoint/convert.c b/modules/module-pipewire/audio-softdsp-endpoint/convert.c index 28d00707..0afe281b 100644 --- a/modules/module-pipewire/audio-softdsp-endpoint/convert.c +++ b/modules/module-pipewire/audio-softdsp-endpoint/convert.c @@ -166,6 +166,9 @@ wp_audio_convert_init_async (GAsyncInitable *initable, int io_priority, node = wp_audio_stream_get_proxy_node (self->target); props = wp_properties_copy (wp_proxy_node_get_properties (node)); + wp_properties_setf (props, PW_KEY_OBJECT_PATH, "%s:%s", + wp_properties_get(props, PW_KEY_OBJECT_PATH), + wp_audio_stream_get_name (WP_AUDIO_STREAM (self))); wp_properties_setf (props, PW_KEY_NODE_NAME, "%s/%s/%s", SPA_NAME_AUDIO_CONVERT, wp_properties_get(props, PW_KEY_NODE_NAME),