mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] Prevent loss of state between MIDI subscriptions
@ 2012-12-26  4:20 Thomas Karpiniec
  2012-12-26  4:53 ` Thomas Karpiniec
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Karpiniec @ 2012-12-26  4:20 UTC (permalink / raw)
  To: alsa-devel; +Cc: linux-kernel

A MIDI input parser is unnecessarily reset whenever a new subscription 
is created.

This is a particular problem with the Novation Launchpad, which sends a 
single NOTEON command, then a series of notes indefinitely unless a 
control button is pressed or it is power cycled. If a user application 
restarts and resubscribes, the parser no longer knows that it is 
receiving NOTEONs and fails to pass on new input.

Signed-off-by: Thomas Karpiniec <tk@1.21jiggawatts.net>
---
  sound/core/seq/seq_midi.c |    1 -
  1 file changed, 1 deletion(-)

diff --git a/sound/core/seq/seq_midi.c b/sound/core/seq/seq_midi.c
index 64069db..1a977df 100644
--- a/sound/core/seq/seq_midi.c
+++ b/sound/core/seq/seq_midi.c
@@ -200,7 +200,6 @@ static int midisynth_subscribe(void *private_data, 
struct snd_seq_port_subscribe
  		snd_rawmidi_kernel_release(&msynth->input_rfile);
  		return err;
  	}
-	snd_midi_event_reset_encode(msynth->parser);
  	runtime->event = snd_midi_input_event;
  	runtime->private_data = msynth;
  	snd_rawmidi_kernel_read(msynth->input_rfile.input, NULL, 0);
-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-12-26  4:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-12-26  4:20 [PATCH] Prevent loss of state between MIDI subscriptions Thomas Karpiniec
2012-12-26  4:53 ` Thomas Karpiniec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®