This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 6aa9590e7a40ff584da41dfd64d95b098bf0c9c4 Author: Marvin Scholz <[email protected]> AuthorDate: Tue Apr 28 15:46:59 2026 +0200 Commit: Marvin Scholz <[email protected]> CommitDate: Thu Jul 2 18:23:18 2026 +0200 avformat/hevc: use correct format specifier The numOfArrays variable is an integer, so use %d to print it. --- libavformat/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hevc.c b/libavformat/hevc.c index 5924f39503..c9ee11f36c 100644 --- a/libavformat/hevc.c +++ b/libavformat/hevc.c @@ -1050,7 +1050,7 @@ static int hvcc_write(void *logctx, AVIOContext *pb, hvcc->temporalIdNested); av_log(logctx, AV_LOG_TRACE, "lengthSizeMinusOne: %"PRIu8"\n", hvcc->lengthSizeMinusOne); - av_log(logctx, AV_LOG_TRACE, "numOfArrays: %"PRIu8"\n", + av_log(logctx, AV_LOG_TRACE, "numOfArrays: %d\n", numOfArrays); for (unsigned i = 0, j = 0; i < FF_ARRAY_ELEMS(hvcc->arrays); i++) { const HVCCNALUnitArray *const array = &hvcc->arrays[i]; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
