cbs_h264: Fix format specifier

This commit is contained in:
Mark Thompson 2017-10-24 22:58:47 +01:00
parent 79d666aa57
commit 59b00ffea3
1 changed files with 1 additions and 1 deletions

View 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;