Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751387AbWB0MNc (ORCPT ); Mon, 27 Feb 2006 07:13:32 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1751746AbWB0MNc (ORCPT ); Mon, 27 Feb 2006 07:13:32 -0500 Received: from mx1.suse.de ([195.135.220.2]:47336 "EHLO mx1.suse.de") by vger.kernel.org with ESMTP id S1751387AbWB0MNc (ORCPT ); Mon, 27 Feb 2006 07:13:32 -0500 Date: Mon, 27 Feb 2006 13:13:19 +0100 Message-ID: From: Takashi Iwai To: Junichi Uekawa Cc: alsa-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: Re: [Alsa-devel] [BUG] 2.6.16-rc4 git, ALSA USB-MIDI does not give NOTEOFF event for M-Audio Keystation 88es, but NOTEON with velocity=0 In-Reply-To: <87vev2w2hd.dancerj%dancer@netfort.gr.jp> References: <87vev2w2hd.dancerj%dancer@netfort.gr.jp> User-Agent: Wanderlust/2.12.0 (Your Wildest Dreams) SEMI/1.14.6 (Maruoka) FLIM/1.14.7 (=?ISO-8859-4?Q?Sanj=F2?=) APEL/10.6 MULE XEmacs/21.5 (beta21) (corn) (+CVS-20050720) (i386-suse-linux) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1252 Lines: 32 At Mon, 27 Feb 2006 00:42:38 +0900, Junichi Uekawa wrote: > > Hi, > > I'm seeing that USB MIDI keyboard (M-Audio Keystation 88es) is > generating note-on events on both note-on and note-off. The difference > being that note-off is generating an note-on event with velocity '0'. > > The following code in seq_midi_emul.c(snd_midi_process_event) looks > suspiciously like what's needed for this device: > > /* Make sure that we don't have a note on that should really be > * a note off */ > if (ev->type == SNDRV_SEQ_EVENT_NOTEON && ev->data.note.velocity == 0) > ev->type = SNDRV_SEQ_EVENT_NOTEOFF; This code is irrelevant. This is for MIDI emulation like emu10k1 WaveTable, not for the real MIDI device. Basically the given behavior is not a bug. The sequencer handles note-on with velocity 0 as it is. As a strict definition, note-off and note-on with zero velocity are different although they are used widely as identical in order to save bytes. Takashi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/