This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit dbd783f38940e9741274dc6ffc9ea416be6ede9f Author: Zhao Zhili <[email protected]> AuthorDate: Mon Mar 16 11:37:06 2026 +0800 Commit: James Almer <[email protected]> CommitDate: Mon Mar 16 13:26:52 2026 +0000 avformat/lcevc: fix wrong NAL count written for NON IDR Signed-off-by: Zhao Zhili <[email protected]> --- libavformat/lcevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/lcevc.c b/libavformat/lcevc.c index df87e6c9cc..83217c2e79 100644 --- a/libavformat/lcevc.c +++ b/libavformat/lcevc.c @@ -264,7 +264,7 @@ int ff_isom_write_lvcc(AVIOContext *pb, const uint8_t *data, int len) } if (nb_nidr) { avio_w8(pb, LCEVC_NON_IDR_NUT); - avio_wb16(pb, nb_idr); + avio_wb16(pb, nb_nidr); avio_write(pb, nidr, nidr_size); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
