Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2011-07-25 17:50:13 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-07-25 19:08:45 +0400
commitf54b8f848287e5f3a41e629bc035ff60a31abbbc (patch)
tree4c13a20760de4f52fd5a72d29b76e13de64ce15e /libavformat/udp.c
parente8baa8eb7f45bb5fdbfcc70ae028cd11238faa88 (diff)
udp: allow fifo size to be tuned seperately
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit bd652ff66e2062df5a05030f211c23e7d4e0be36)
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c2
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;
}
}