[FFmpeg-cvslog] udp: allow fifo size to be tuned seperately
Michael Niedermayer
git at videolan.org
Mon Jul 25 17:08:48 CEST 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Jul 25 15:50:13 2011 +0200| [bd652ff66e2062df5a05030f211c23e7d4e0be36] | committer: Michael Niedermayer
udp: allow fifo size to be tuned seperately
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=bd652ff66e2062df5a05030f211c23e7d4e0be36
---
libavformat/udp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/udp.c b/libavformat/udp.c
index cbf3b43..dda7ec2 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;
}
}
More information about the ffmpeg-cvslog
mailing list