From ddd7cd853044105f329a2c70cce2d8f1470f559e Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 19 Sep 2009 10:16:23 +0200 Subject: [PATCH] stdin: Increase input buffer size. 16K was a bit small for the ogg_decode filter. --- stdin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdin.c b/stdin.c index fea30dd9..c683b560 100644 --- a/stdin.c +++ b/stdin.c @@ -91,7 +91,7 @@ void stdin_set_defaults(struct stdin_task *sit) { int ret; - sit->bufsize = 16 * 1024, + sit->bufsize = 32 * 1024, sit->task.pre_select = stdin_pre_select; sit->task.post_select = stdin_post_select; sprintf(sit->task.status, "stdin reader"); -- 2.39.2