diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 15:50:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-07-25 16:37:12 +0200 |
commit | 158eb8599a2811ad8eed9939878982f172b79a89 (patch) | |
tree | dbe94ada037c7c841a17674075fe89bbd1062b7d | |
parent | bd652ff66e2062df5a05030f211c23e7d4e0be36 (diff) | |
download | ffmpeg-158eb8599a2811ad8eed9939878982f172b79a89.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>
-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 6e76825d24..d2ce53c670 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"); } /** |