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.
This commit is contained in:
Antoine Beaupré 2009-01-14 23:28:26 +01:00 committed by Max Kellermann
parent 283c2621f3
commit b7fe09fa52

View File

@ -52,7 +52,7 @@ struct shout_encoder_plugin {
};
struct shout_buffer {
unsigned char data[8192];
unsigned char data[32768];
size_t len;
};