This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 1fd128ef3a91eee2d6f5cf0a8a02b96ad59f63b5 Author: Jack Lau <[email protected]> AuthorDate: Mon Feb 9 17:01:20 2026 +0800 Commit: Jack Lau <[email protected]> CommitDate: Tue Feb 17 13:27:09 2026 +0000 avformat/tls_gnutls: update the comment since the underlying socket can be TCP or UDP Signed-off-by: Jack Lau <[email protected]> --- libavformat/tls_gnutls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/tls_gnutls.c b/libavformat/tls_gnutls.c index 957831081e..778ca9cf40 100644 --- a/libavformat/tls_gnutls.c +++ b/libavformat/tls_gnutls.c @@ -689,7 +689,7 @@ static int tls_read(URLContext *h, uint8_t *buf, int size) TLSShared *s = &c->tls_shared; URLContext *uc = s->is_dtls ? s->udp : s->tcp; int ret; - // Set or clear the AVIO_FLAG_NONBLOCK on c->tls_shared.tcp + // Set or clear the AVIO_FLAG_NONBLOCK on the underlying socket uc->flags &= ~AVIO_FLAG_NONBLOCK; uc->flags |= h->flags & AVIO_FLAG_NONBLOCK; ret = gnutls_record_recv(c->session, buf, size); @@ -706,7 +706,7 @@ static int tls_write(URLContext *h, const uint8_t *buf, int size) TLSShared *s = &c->tls_shared; URLContext *uc = s->is_dtls ? s->udp : s->tcp; int ret; - // Set or clear the AVIO_FLAG_NONBLOCK on c->tls_shared.tcp + // Set or clear the AVIO_FLAG_NONBLOCK on the underlying socket uc->flags &= ~AVIO_FLAG_NONBLOCK; uc->flags |= h->flags & AVIO_FLAG_NONBLOCK; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
