diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 15:50:13 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 17:08:45 +0200 |
commit | f54b8f848287e5f3a41e629bc035ff60a31abbbc (patch) | |
tree | 4c13a20760de4f52fd5a72d29b76e13de64ce15e | |
parent | e8baa8eb7f45bb5fdbfcc70ae028cd11238faa88 (diff) | |
download | ffmpeg-f54b8f848287e5f3a41e629bc035ff60a31abbbc.tar.gz |
udp: allow fifo size to be tuned seperately
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit bd652ff66e2062df5a05030f211c23e7d4e0be36)
-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 7c18fb7bf0..c2ff76ae2d 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; } } |