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>
pull/389/head
James Almer 1 year ago
parent bae92361ed
commit fe103ee61f
  1. 2
      libavcodec/vulkan_decode.c

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

Loading…
Cancel
Save