summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/inputstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inputstream.c b/src/inputstream.c
index 7ece3b5c..6bc841ac 100644
--- a/src/inputstream.c
+++ b/src/inputstream.c
@@ -20,7 +20,7 @@ struct input_stream* input_stream_new(struct sink *s, struct sample_spec *spec,
i->notify = NULL;
i->notify_userdata = NULL;
- i->memblockq = memblockq_new(bytes_per_second(spec)*5, sample_size(spec), (size_t) -1);
+ i->memblockq = memblockq_new(bytes_per_second(spec)/2, sample_size(spec), (size_t) -1);
assert(i->memblockq);
assert(s->core);