mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Relax max MIDI msg size to 256 (for long sysex)
(win-mme already used 256, CoreMIDI can handle up to 256 as can ALSA)
This commit is contained in:
parent
f9d7a3720d
commit
4ebcef53f8
2 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
/* max bytes per individual midi-event
|
||||
* events larger than this are ignored */
|
||||
#define MaxAlsaMidiEventSize (128)
|
||||
#define MaxAlsaMidiEventSize (256)
|
||||
|
||||
namespace ARDOUR {
|
||||
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
#include "coreaudio_pcmio.h"
|
||||
#include "coremidi_io.h"
|
||||
|
||||
#define MaxCoreMidiEventSize 128 // matches CoreMidi's MIDIPacket
|
||||
#define MaxCoreMidiEventSize 256 // matches CoreMidi's MIDIPacket (https://developer.apple.com/documentation/coremidi/midipacket)
|
||||
|
||||
namespace ARDOUR {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue