[FFmpeg-cvslog] cbs_h264: Fix format specifier

Mark Thompson git at videolan.org
Wed Oct 25 01:09:16 EEST 2017


ffmpeg | branch: master | Mark Thompson <sw at jkqxz.net> | Tue Oct 24 22:58:47 2017 +0100| [59b00ffea3c90b41f6e83f8184068657fed112dc] | committer: Mark Thompson

cbs_h264: Fix format specifier

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59b00ffea3c90b41f6e83f8184068657fed112dc
---

 libavcodec/cbs_h264_syntax_template.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/cbs_h264_syntax_template.c b/libavcodec/cbs_h264_syntax_template.c
index 8303acbdc4..2d60273506 100644
--- a/libavcodec/cbs_h264_syntax_template.c
+++ b/libavcodec/cbs_h264_syntax_template.c
@@ -761,7 +761,7 @@ static int FUNC(sei_payload)(CodedBitstreamContext *ctx, RWContext *rw,
     end_position = get_bits_count(rw);
     if (end_position < start_position + 8 * current->payload_size) {
         av_log(ctx->log_ctx, AV_LOG_ERROR, "Incorrect SEI payload length: "
-               "header %d bits, actually %d bits.\n",
+               "header %"PRIu32" bits, actually %d bits.\n",
                8 * current->payload_size,
                end_position - start_position);
         return AVERROR_INVALIDDATA;



More information about the ffmpeg-cvslog mailing list