diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 15:50:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 16:37:12 +0200 |
commit | bd652ff66e2062df5a05030f211c23e7d4e0be36 (patch) | |
tree | 99a4590b03067c2136cf099c9c6e10031f44f64e /libavformat/udp.c | |
parent | e8794f1d5e9b76330985d2b6d3856b05cfa72c2e (diff) | |
download | ffmpeg-bd652ff66e2062df5a05030f211c23e7d4e0be36.tar.gz |
udp: allow fifo size to be tuned seperately
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index cbf3b434d5..dda7ec2d13 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -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; } } |