diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 15:50:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 17:08:48 +0200 |
commit | 6d75dbebc0b7af64cbac62cf32ee5ac0911cbfaa (patch) | |
tree | 3a950a3d43a8701a5f6d40cabe7566598483b9f8 | |
parent | f54b8f848287e5f3a41e629bc035ff60a31abbbc (diff) | |
download | ffmpeg-6d75dbebc0b7af64cbac62cf32ee5ac0911cbfaa.tar.gz |
rtp: disable udp fifos, the rtp code cannot work with the fifos in its current form as rtp bypasses the public API.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 158eb8599a2811ad8eed9939878982f172b79a89)
-rw-r--r-- | libavformat/rtpproto.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtpproto.c b/libavformat/rtpproto.c index 8b23f25c46..89c59cb877 100644 --- a/libavformat/rtpproto.c +++ b/libavformat/rtpproto.c @@ -115,6 +115,7 @@ static void build_udp_url(char *buf, int buf_size, url_add_option(buf, buf_size, "pkt_size=%d", max_packet_size); if (connect) url_add_option(buf, buf_size, "connect=1"); + url_add_option(buf, buf_size, "fifo_size=0"); } /** |