summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-12-15 10:15:58 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-12-15 10:15:58 -0500
commitbb84f414b02d875cf1c97d23fd4422db5a28f156 (patch)
tree1edc02a221c533cd763794c06ab95e0e79a855f2
parent04df09b6f4268405186b0f05a323001908d18629 (diff)
downloadjack1-bb84f414b02d875cf1c97d23fd4422db5a28f156.tar.gz
switch to 2048 bytes for default MIDI buffer size, 8192 is a bit large to be the default
-rw-r--r--libjack/port.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libjack/port.c b/libjack/port.c
index 22f316d..a6144ee 100644
--- a/libjack/port.c
+++ b/libjack/port.c
@@ -70,7 +70,7 @@ jack_port_type_info_t jack_builtin_port_types[] = {
},
{ .type_name = JACK_DEFAULT_MIDI_TYPE,
.buffer_scale_factor = -1,
- .buffer_size = 8192
+ .buffer_size = 2048
},
{ .type_name = "", }
};