diff options
author | Mark Thompson <sw@jkqxz.net> | 2017-10-24 22:58:47 +0100 |
---|---|---|
committer | Mark Thompson <sw@jkqxz.net> | 2017-10-24 23:07:58 +0100 |
commit | 59b00ffea3c90b41f6e83f8184068657fed112dc (patch) | |
tree | 071a43de52562d45b87001a1cf12028319aead84 /libavcodec | |
parent | 79d666aa57517eda4ad71a83af0c63c722efef70 (diff) | |
download | ffmpeg-59b00ffea3c90b41f6e83f8184068657fed112dc.tar.gz |
cbs_h264: Fix format specifier
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/cbs_h264_syntax_template.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |