avcodec/vulkan_dec: use PRId64 specifier for an int64_t

Fixes warnings on x86-32 and Windows.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-05-28 23:18:40 -03:00
parent bae92361ed
commit fe103ee61f

View File

@ -342,7 +342,7 @@ int ff_vk_decode_frame(AVCodecContext *avctx,
if (ret == VK_SUCCESS)
av_log(avctx, prev_sub_res < 0 ? AV_LOG_ERROR : AV_LOG_DEBUG,
"Result of previous frame decoding: %li\n", prev_sub_res);
"Result of previous frame decoding: %"PRId64"\n", prev_sub_res);
}
sd_buf = (FFVkVideoBuffer *)vp->slices_buf->data;