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

github.com/mpc-hc/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:56 +0400
committerMichael Niedermayer <michaelni@gmx.at>2011-07-25 18:37:12 +0400
commit158eb8599a2811ad8eed9939878982f172b79a89 (patch)
treedbe94ada037c7c841a17674075fe89bbd1062b7d /libavformat
parentbd652ff66e2062df5a05030f211c23e7d4e0be36 (diff)
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>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/rtpproto.c1
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");
}
/**