PR #20408 opened by Jamaika1 URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20408 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/20408.patch
>From b2d9daf92b0c0da80155758e80ac7442aefb53f4 Mon Sep 17 00:00:00 2001 From: Jamaika1 <[email protected]> Date: Wed, 3 Sep 2025 08:42:29 +0000 Subject: [PATCH] Fix: change integer %zu --- libavcodec/hevc/hevcdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/hevc/hevcdec.c b/libavcodec/hevc/hevcdec.c index d3e5e58cfc..c3f2627369 100644 --- a/libavcodec/hevc/hevcdec.c +++ b/libavcodec/hevc/hevcdec.c @@ -3523,7 +3523,7 @@ static int hevc_frame_end(HEVCContext *s, HEVCLayerContext *l) } s->sei.picture_hash.is_md5 = 0; - av_log(s->avctx, AV_LOG_DEBUG, "Decoded frame with POC %zu/%d.\n", + av_log(s->avctx, AV_LOG_DEBUG, "Decoded frame with POC %"SIZE_SPECIFIER"/%d.\n", l - s->layers, s->poc); return 0; -- 2.49.1 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
