From a13f65f583784630f6bcf8a850a4b038436e051d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 20 Jun 2022 16:18:42 +0200 Subject: [PATCH] alsa-seq: disable the running status Running status is not something we want in the PipeWire graph. --- spa/plugins/alsa/alsa-seq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/spa/plugins/alsa/alsa-seq.c b/spa/plugins/alsa/alsa-seq.c index e635f0774..27826bdd7 100644 --- a/spa/plugins/alsa/alsa-seq.c +++ b/spa/plugins/alsa/alsa-seq.c @@ -143,6 +143,7 @@ static int init_stream(struct seq_state *state, enum spa_direction direction) snd_strerror(res)); return res; } + snd_midi_event_no_status(stream->codec, 1); memset(stream->ports, 0, sizeof(stream->ports)); return 0; }