Commit b7fe09fa authored by Antoine Beaupré's avatar Antoine Beaupré Committed by Max Kellermann

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.
parent 283c2621
......@@ -52,7 +52,7 @@ struct shout_encoder_plugin {
};
struct shout_buffer {
unsigned char data[8192];
unsigned char data[32768];
size_t len;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment