This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/6.1 in repository ffmpeg.
commit 7f73542b31491d0795a254d90e1fda236b843f94 Author: Michael Niedermayer <[email protected]> AuthorDate: Fri Feb 27 23:32:24 2026 +0100 Commit: Michael Niedermayer <[email protected]> CommitDate: Mon May 4 17:13:26 2026 +0200 avformat/rtsp: Pass blacklist Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 88eb772900b727e0b8ac2ee7e24a3e2b9eed3789) Signed-off-by: Michael Niedermayer <[email protected]> --- libavformat/rtsp.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index a5c6ca8899..46944d88f3 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1842,6 +1842,15 @@ redirect: } } + if (!rt->rtsp_hd->protocol_blacklist && s->protocol_blacklist) { + rt->rtsp_hd->protocol_blacklist = av_strdup(s->protocol_blacklist); + if (!rt->rtsp_hd->protocol_blacklist) { + av_dict_free(&options); + err = AVERROR(ENOMEM); + goto fail; + } + } + /* complete the connection */ if (ffurl_connect(rt->rtsp_hd, &options)) { av_dict_free(&options); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
