]> git.sesse.net Git - ffmpeg/commitdiff
cbs_h264: Fix format specifier
authorMark Thompson <sw@jkqxz.net>
Tue, 24 Oct 2017 21:58:47 +0000 (22:58 +0100)
committerMark Thompson <sw@jkqxz.net>
Tue, 24 Oct 2017 22:07:58 +0000 (23:07 +0100)
libavcodec/cbs_h264_syntax_template.c

index 8303acbdc459a75e757caf7c7bfee00d8c4fe8fc..2d60273506f42e438d4a3da1fe8d53bdead749c4 100644 (file)
@@ -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;