Browse Source

use a fixed 8192 byte buffer for MIDI ports, like jack2

tags/0.124.0
Paul Davis 12 years ago
parent
commit
5c0f0cc705
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      libjack/port.c

+ 2
- 1
libjack/port.c View File

@@ -69,7 +69,8 @@ jack_port_type_info_t jack_builtin_port_types[] = {
.buffer_scale_factor = 1,
},
{ .type_name = JACK_DEFAULT_MIDI_TYPE,
.buffer_scale_factor = 8,
.buffer_scale_factor = -1,
.buffer_size = 8192
},
{ .type_name = "", }
};


Loading…
Cancel
Save