]> git.tuebingen.mpg.de Git - paraslash.git/commitdiff
stdin: Increase input buffer size.
authorAndre Noll <maan@systemlinux.org>
Sat, 19 Sep 2009 08:16:23 +0000 (10:16 +0200)
committerAndre Noll <maan@systemlinux.org>
Sat, 19 Sep 2009 08:16:23 +0000 (10:16 +0200)
16K was a bit small for the ogg_decode filter.

stdin.c

diff --git a/stdin.c b/stdin.c
index fea30dd90ca0e493bb6f4ce54f1515ea072761dc..c683b56073ae05c0b057b2b1909be220f7b066ad 100644 (file)
--- a/stdin.c
+++ b/stdin.c
@@ -91,7 +91,7 @@ void stdin_set_defaults(struct stdin_task *sit)
 {
        int ret;
 
 {
        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");
        sit->task.pre_select = stdin_pre_select;
        sit->task.post_select = stdin_post_select;
        sprintf(sit->task.status, "stdin reader");