This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 93be3e37db24ccf8e6ccbc143d581eefd4851a50 Author: Steven Liu <[email protected]> AuthorDate: Wed Feb 4 18:14:53 2026 +0800 Commit: stevenliu <[email protected]> CommitDate: Sun Mar 1 04:21:45 2026 +0000 avformat/rtmpproto: add vvc1 string into enhanced_codecs list Signed-off-by: Steven Liu <[email protected]> --- libavformat/rtmpproto.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c index b029c57621..d4c9047266 100644 --- a/libavformat/rtmpproto.c +++ b/libavformat/rtmpproto.c @@ -362,7 +362,7 @@ static int gen_connect(URLContext *s, RTMPContext *rt) // check the string, fourcc + ',' + ... + end fourcc correct length should be (4+1)*n+4 if ((fourcc_str_len + 1) % 5 != 0) { av_log(s, AV_LOG_ERROR, "Malformed rtmp_enhanched_codecs, " - "should be of the form hvc1[,av01][,vp09][,...]\n"); + "should be of the form hvc1[,av01][,vp09][,vvc1][,...]\n"); ff_rtmp_packet_destroy(&pkt); return AVERROR(EINVAL); } @@ -379,6 +379,7 @@ static int gen_connect(URLContext *s, RTMPContext *rt) !strncmp(fourcc_data, "ec-3", 4) || !strncmp(fourcc_data, "fLaC", 4) || !strncmp(fourcc_data, "hvc1", 4) || + !strncmp(fourcc_data, "vvc1", 4) || !strncmp(fourcc_data, ".mp3", 4) || !strncmp(fourcc_data, "mp4a", 4) || !strncmp(fourcc_data, "Opus", 4) || _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
