[FFmpeg-cvslog] udp: allow fifo size to be tuned seperately
Michael Niedermayer
git at videolan.org
Wed Jul 27 12:49:46 CEST 2011
ffmpeg | branch: release/0.7 | Michael Niedermayer <michaelni at gmx.at> | Mon Jul 25 15:50:13 2011 +0200| [f54b8f848287e5f3a41e629bc035ff60a31abbbc] | committer: Michael Niedermayer
udp: allow fifo size to be tuned seperately
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit bd652ff66e2062df5a05030f211c23e7d4e0be36)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f54b8f848287e5f3a41e629bc035ff60a31abbbc
---
libavformat/udp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 7c18fb7..c2ff76a 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