Merge commit '98063bcf15eb1e9bf9c8758c83c88d51cbb7ace7'
* commit '98063bcf15eb1e9bf9c8758c83c88d51cbb7ace7': rtsp: Do not assume getnameinfo cannot fail Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
This commit is contained in:
commit
aaa4abfdb8
@ -2285,8 +2285,14 @@ static int sdp_read_header(AVFormatContext *s)
|
|||||||
if (!(rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)) {
|
if (!(rt->rtsp_flags & RTSP_FLAG_CUSTOM_IO)) {
|
||||||
AVDictionary *opts = map_to_opts(rt);
|
AVDictionary *opts = map_to_opts(rt);
|
||||||
|
|
||||||
getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip, sizeof(rtsp_st->sdp_ip),
|
err = getnameinfo((struct sockaddr*) &rtsp_st->sdp_ip,
|
||||||
namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
|
sizeof(rtsp_st->sdp_ip),
|
||||||
|
namebuf, sizeof(namebuf), NULL, 0, NI_NUMERICHOST);
|
||||||
|
if (err) {
|
||||||
|
av_log(s, AV_LOG_ERROR, "getnameinfo: %s\n", gai_strerror(err));
|
||||||
|
err = AVERROR(EIO);
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
ff_url_join(url, sizeof(url), "rtp", NULL,
|
ff_url_join(url, sizeof(url), "rtp", NULL,
|
||||||
namebuf, rtsp_st->sdp_port,
|
namebuf, rtsp_st->sdp_port,
|
||||||
"?localport=%d&ttl=%d&connect=%d&write_to_source=%d",
|
"?localport=%d&ttl=%d&connect=%d&write_to_source=%d",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user