From 1e86b97f06809e006c6439c1634be7d374c48ca6 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 8 Feb 2020 01:07:08 +0100 Subject: actually... --- stream/stream_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/stream_file.c b/stream/stream_file.c index b2c4d1d833..1908aef553 100644 --- a/stream/stream_file.c +++ b/stream/stream_file.c @@ -427,7 +427,7 @@ static int open_f(stream_t *stream) pthread_mutex_init(&p->lock, NULL); pthread_cond_init(&p->wakeup, NULL); - p->ring = mp_ring_new(stream, 2 * 64 * 1024); + p->ring = mp_ring_new(stream, 3 * 64 * 1024); int r = pthread_create(&p->thread, NULL, read_thread, stream); if (r) return -1; -- cgit v1.2.3