Re: [fluid-dev] NOTE_OFF events aren't being sent with libfluidsynth

2015-12-19 Thread Ryan Gonzalez
On December 19, 2015 6:33:45 PM CST, Ben Gonzales wrote: >Hi Ryan. > >You'll probably find that the controller is sending a note_on with >velocity=0 rather than a note off. That's what my AKAI EWI-USB does. >Fluidsynth interprets that as a note_off. > It does! Thanks for the help! >Nice surn

Re: [fluid-dev] NOTE_OFF events aren't being sent with libfluidsynth

2015-12-19 Thread Ben Gonzales
Hi Ryan. You'll probably find that the controller is sending a note_on with velocity=0 rather than a note off. That's what my AKAI EWI-USB does. Fluidsynth interprets that as a note_off. Nice surname, by the way. Ben On 20/12/15 08:00, Ryan Gonzalez wrote: Hello! I'm using FluidSynth 1.1.

[fluid-dev] NOTE_OFF events aren't being sent with libfluidsynth

2015-12-19 Thread Ryan Gonzalez
Hello! I'm using FluidSynth 1.1.6, and I've come upon an...interesting issue. I basically have something like this (insanely simplified): #include #include int event_callback(void *data, fluid_midi_event_t *event) { int type = fluid_midi_event_get_type(event); if (type == NOTE_OFF) p