mirror of https://git.ffmpeg.org/ffmpeg.git
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 158eb8599a
)
This commit is contained in:
parent
f54b8f8482
commit
6d75dbebc0
|
@ -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");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue