From b7fe09fa5221d89f5dc1aa4990a10498aa6b2f4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antoine=20Beaupr=C3=A9?= Date: Wed, 14 Jan 2009 23:28:26 +0100 Subject: shout: enlarge buffer size to 32 kB I was having problems with shoutcast stream outputs before applying the attached patch, which enlarges the shoutcast output buffer. Ideally, this should be configurable, but this resolves the issue for my needs. --- src/output/shout_plugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/output/shout_plugin.h') diff --git a/src/output/shout_plugin.h b/src/output/shout_plugin.h index 46514fdc3..77ce1b723 100644 --- a/src/output/shout_plugin.h +++ b/src/output/shout_plugin.h @@ -52,7 +52,7 @@ struct shout_encoder_plugin { }; struct shout_buffer { - unsigned char data[8192]; + unsigned char data[32768]; size_t len; }; -- cgit v1.2.3