cbs_mpeg2: Fix format specifier

This commit is contained in:
Mark Thompson 2017-10-24 22:57:44 +01:00
parent 5b2c71bb94
commit 79d666aa57
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ static int cbs_mpeg2_read_unit(CodedBitstreamContext *ctx,
START(0xb8, MPEG2RawGroupOfPicturesHeader, group_of_pictures_header);
#undef START
default:
av_log(ctx->log_ctx, AV_LOG_ERROR, "Unknown start code %02x.\n",
av_log(ctx->log_ctx, AV_LOG_ERROR, "Unknown start code %"PRIx32".\n",
unit->type);
return AVERROR_INVALIDDATA;
}