summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Brand <tom@trellis.ch>2019-01-22 05:59:11 +0100
committerThomas Brand <tom@trellis.ch>2019-01-22 05:59:11 +0100
commit03e164cdbb62d83e7a0af1b0750b1c04fd752529 (patch)
tree13fa3194c45e43f124ff0247099a56548655b7a1
parent655626ac9de45d63f65572f545df08ae69f4d0f7 (diff)
downloadjack2-03e164cdbb62d83e7a0af1b0750b1c04fd752529.tar.gz
Increase buffer sizes in jack_midi_dump.
-rw-r--r--example-clients/midi_dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/example-clients/midi_dump.c b/example-clients/midi_dump.c
index 503af59d..8e5f0801 100644
--- a/example-clients/midi_dump.c
+++ b/example-clients/midi_dump.c
@@ -31,10 +31,10 @@ static pthread_cond_t data_ready = PTHREAD_COND_INITIALIZER;
static int keeprunning = 1;
static uint64_t monotonic_cnt = 0;
-#define RBSIZE 512
+#define RBSIZE 100000
typedef struct {
- uint8_t buffer[128];
+ uint8_t buffer[4096];
uint32_t size;
uint32_t tme_rel;
uint64_t tme_mon;