[vlc-commits] commit: fluidsynth: fix code point for channel aftertouch ( Rémi Denis-Courmont )
git at videolan.org
git at videolan.org
Sat Apr 17 10:22:24 CEST 2010
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Apr 17 11:18:55 2010 +0300| [dc07f6a00abff488c9e8a9eaefcd26c6569ca2a2] | committer: Rémi Denis-Courmont
fluidsynth: fix code point for channel aftertouch
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=dc07f6a00abff488c9e8a9eaefcd26c6569ca2a2
---
modules/codec/fluidsynth.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/codec/fluidsynth.c b/modules/codec/fluidsynth.c
index 5c1288b..4fb33fc 100644
--- a/modules/codec/fluidsynth.c
+++ b/modules/codec/fluidsynth.c
@@ -219,7 +219,7 @@ static aout_buffer_t *DecodeBlock (decoder_t *p_dec, block_t **pp_block)
case 0xC0:
fluid_synth_program_change (p_sys->synth, channel, p1);
break;
- case 0xA0:
+ case 0xD0:
fluid_synth_channel_pressure (p_sys->synth, channel, p1);
break;
case 0xE0:
More information about the vlc-commits
mailing list