This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 69b6af0e6864900cb95b319497876c033e4e38c2 Author: Jack Lau <[email protected]> AuthorDate: Mon Oct 27 20:30:24 2025 +0800 Commit: Jack Lau <[email protected]> CommitDate: Wed Jan 21 08:52:28 2026 +0000 avformat/whip: remove redundant NONBLOCK set for dtls DTLS handshake already force set BLOCK mode. Signed-off-by: Jack Lau <[email protected]> --- libavformat/whip.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libavformat/whip.c b/libavformat/whip.c index 27ed0f5f11..fa5dff0a48 100644 --- a/libavformat/whip.c +++ b/libavformat/whip.c @@ -411,10 +411,6 @@ static av_cold int dtls_initialize(AVFormatContext *s) } /* reuse the udp created by whip */ ff_tls_set_external_socket(whip->dtls_uc, whip->udp); - - /* Make the socket non-blocking */ - ff_socket_nonblock(ffurl_get_file_handle(whip->dtls_uc), 1); - whip->dtls_uc->flags |= AVIO_FLAG_NONBLOCK; end: return ret; } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
