From 4353f9eb7583c37f752420538ac3e5bfe5929c63 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 10 May 2023 18:00:44 +0200 Subject: [PATCH] module-jack: make stream ports physical Just like the ports we connect to. --- src/modules/module-jack-tunnel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/modules/module-jack-tunnel.c b/src/modules/module-jack-tunnel.c index 8b40b4709..37deef60c 100644 --- a/src/modules/module-jack-tunnel.c +++ b/src/modules/module-jack-tunnel.c @@ -463,6 +463,7 @@ static void make_stream_ports(struct stream *s) props = pw_properties_new( PW_KEY_FORMAT_DSP, "32 bit float mono audio", PW_KEY_AUDIO_CHANNEL, str ? str : "UNK", + PW_KEY_PORT_PHYSICAL, "true", PW_KEY_PORT_NAME, name, NULL); @@ -474,6 +475,7 @@ static void make_stream_ports(struct stream *s) props = pw_properties_new( PW_KEY_FORMAT_DSP, "8 bit raw midi", PW_KEY_PORT_NAME, name, + PW_KEY_PORT_PHYSICAL, "true", NULL); type = JACK_DEFAULT_MIDI_TYPE;