mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
* enlage MidiBuffer size to 128 bytes to allow for sysex events
git-svn-id: svn://localhost/ardour2/branches/3.0@4462 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
582555c337
commit
6fe0dc459e
2 changed files with 6 additions and 2 deletions
|
|
@ -536,7 +536,11 @@ Sequence::append(const Event& event)
|
|||
} else if (ev.is_note_off()) {
|
||||
append_note_off_unlocked(ev.channel(), ev.time(), ev.note());
|
||||
} else if (!_type_map.type_is_midi(ev.event_type())) {
|
||||
printf("WARNING: Sequence: Unknown event type %X\n", ev.event_type());
|
||||
printf("WARNING: Sequence: Unknown event type %X: ", ev.event_type());
|
||||
for (size_t i=0; i < ev.size(); ++i) {
|
||||
printf("%X ", ev.buffer()[i]);
|
||||
}
|
||||
printf("\n");
|
||||
} else if (ev.is_cc()) {
|
||||
append_control_unlocked(
|
||||
Evoral::MIDI::ContinuousController(ev.event_type(), ev.channel(), ev.cc_number()),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue