Commit bd652ff6 authored by Michael Niedermayer's avatar Michael Niedermayer

udp: allow fifo size to be tuned seperately

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent e8794f1d
......@@ -426,7 +426,7 @@ static int udp_open(URLContext *h, const char *uri, int flags)
if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
s->is_connected = strtol(buf, NULL, 10);
}
if (av_find_info_tag(buf, sizeof(buf), "buf_size", p)) {
if (av_find_info_tag(buf, sizeof(buf), "fifo_size", p)) {
s->circular_buffer_size = strtol(buf, NULL, 10)*188;
}
}
......
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