Alsa-Devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: maximilian attems <max@stro.at>
Cc: alsa-devel@alsa-project.org, Clemens Ladisch <clemens@ladisch.de>,
	uwe_debbug@arcor.de
Subject: Re: [PATCH] emux midi synthesizer doesn't honor SOFT_PEDAL-release event
Date: Fri, 09 May 2008 12:48:55 +0200	[thread overview]
Message-ID: <s5h1w4b3g88.wl%tiwai@suse.de> (raw)
In-Reply-To: <1210322694-8868-1-git-send-email-max@stro.at>

At Fri,  9 May 2008 10:44:54 +0200,
maximilian attems wrote:
> 
> When the hardware wavetable synthesizer of an Creative SB Audigy or SB
> Live! card (with emu10k chip) receives the MIDI SOFT_PEADAL-press event
> (?? 67 127) the appropriate voice is attenuted. Unfortunately when the
> pedal is released (event ?? 67 0) the voice does not get it's original
> volume again.
> 
> Boolean MIDI controls should interpret 0..63 as false and 64..127 as true.
> Thanks to Clemens Ladisch for review and correction.
> 
> Original patch from "Uwe KrÃ#ger" <uwe_debbug@arcor.de>
> Submitted to http://bugs.debian.org/474312
> 
> Signed-off-by: maximilian attems <max@stro.at>
> Cc: uwe_debbug@arcor.de
> Cc: Clemens Ladisch <clemens@ladisch.de>
> ---
>  sound/synth/emux/emux_synth.c |    6 +++++-
>  1 files changed, 5 insertions(+), 1 deletions(-)

Thanks, applied to ALSA tree now.


Takashi

> 
> diff --git a/sound/synth/emux/emux_synth.c b/sound/synth/emux/emux_synth.c
> index 478369b..b343818 100644
> --- a/sound/synth/emux/emux_synth.c
> +++ b/sound/synth/emux/emux_synth.c
> @@ -341,8 +341,12 @@ snd_emux_control(void *p, int type, struct snd_midi_channel *chan)
>  	case MIDI_CTL_SOFT_PEDAL:
>  #ifdef SNDRV_EMUX_USE_RAW_EFFECT
>  		/* FIXME: this is an emulation */
> -		snd_emux_send_effect(port, chan, EMUX_FX_CUTOFF, -160,
> +		if (chan->control[type] >= 64)
> +			snd_emux_send_effect(port, chan, EMUX_FX_CUTOFF, -160,
>  				     EMUX_FX_FLAG_ADD);
> +		else
> +			snd_emux_send_effect(port, chan, EMUX_FX_CUTOFF, 0,
> +				     EMUX_FX_FLAG_OFF);
>  #endif
>  		break;
>  
> -- 
> 1.5.5.1
> 

  reply	other threads:[~2008-05-09 10:48 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-05-09  8:44 [PATCH] emux midi synthesizer doesn't honor SOFT_PEDAL-release event maximilian attems
2008-05-09 10:48 ` Takashi Iwai [this message]
  -- strict thread matches above, loose matches on Subject: below --
2008-05-08 20:53 maximilian attems
2008-05-09  7:33 ` Clemens Ladisch

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=s5h1w4b3g88.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=alsa-devel@alsa-project.org \
    --cc=clemens@ladisch.de \
    --cc=max@stro.at \
    --cc=uwe_debbug@arcor.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox