You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature will allow for receiving UMP events.
While the jack_midi_event_write call allow for UMP data (raw), the receive routines do not.
The receive routines currently return correct data for legacy MIDI events but not for UMP events.
Basic example
count = jack_midi_get_event_count(port_buffer); // returns 4, 8 or 16 depending on UMP type
status = jack_midi_event_get(&midi_event, port_buffer, event_nr);
Motivation
Receive MIDI 2.0 data support
The text was updated successfully, but these errors were encountered:
Summary
This feature will allow for receiving UMP events.
While the jack_midi_event_write call allow for UMP data (raw), the receive routines do not.
The receive routines currently return correct data for legacy MIDI events but not for UMP events.
Basic example
count = jack_midi_get_event_count(port_buffer); // returns 4, 8 or 16 depending on UMP type
status = jack_midi_event_get(&midi_event, port_buffer, event_nr);
Motivation
Receive MIDI 2.0 data support
The text was updated successfully, but these errors were encountered: