This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack1
mirror of
https://github.com/jackaudio/jack1
Watch
1
Star
0
Fork
0
Code
Releases
19
Activity
Browse Source
use a fixed 8192 byte buffer for MIDI ports, like jack2
tags/0.124.0
Paul Davis
12 years ago
parent
554b524785
commit
5c0f0cc705
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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 = "", }
};
Write
Preview
Loading…
Cancel
Save