diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-22 03:36:15 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-22 03:36:57 +0300 |
commit | 015d86e06359f0bc7aff9812ec6da5a599a5aa2f (patch) | |
tree | f9ed645ba865ec0fbd478b36f1007bbaac9d5846 | |
parent | 6e38a3b9b6a408683aa42d68281b35ad9b9b39b2 (diff) | |
download | libADLMIDI-015d86e06359f0bc7aff9812ec6da5a599a5aa2f.tar.gz libADLMIDI-015d86e06359f0bc7aff9812ec6da5a599a5aa2f.tar.bz2 libADLMIDI-015d86e06359f0bc7aff9812ec6da5a599a5aa2f.zip |
VLC Plugin: Add missing Note-AfterTouch event support
-rw-r--r-- | utils/vlc_codec/libadlmidi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/vlc_codec/libadlmidi.c b/utils/vlc_codec/libadlmidi.c index aedd718..efc2bb8 100644 --- a/utils/vlc_codec/libadlmidi.c +++ b/utils/vlc_codec/libadlmidi.c @@ -276,7 +276,9 @@ static block_t *DecodeBlock (decoder_t *p_dec, block_t **pp_block) case 0x90: adl_rt_noteOn(p_sys->synth, channel, p1, p2); break; - /*case 0xA0: note aftertouch not implemented */ + case 0xA0: + adl_rt_noteAfterTouch(p_sys->synth, channel, p1, p2); + break; case 0xB0: adl_rt_controllerChange(p_sys->synth, channel, p1, p2); break; |