Commit 59b00ffe authored by Mark Thompson's avatar Mark Thompson

cbs_h264: Fix format specifier

parent 79d666aa
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment