diff options
author | James Almer <jamrial@gmail.com> | 2023-05-28 23:18:40 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-05-28 23:18:53 -0300 |
commit | fe103ee61faa91a5d623f0f5024d56b55933df52 (patch) | |
tree | e924a00fdf7e3782f26e15c7ed5b715086bcc90c /libavcodec/vulkan_decode.c | |
parent | bae92361ed130aef1bada7c59eb67393510e0f1a (diff) | |
download | ffmpeg-fe103ee61faa91a5d623f0f5024d56b55933df52.tar.gz |
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>
Diffstat (limited to 'libavcodec/vulkan_decode.c')
-rw-r--r-- | libavcodec/vulkan_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vulkan_decode.c b/libavcodec/vulkan_decode.c index 6138106fef..4ec6f16612 100644 --- a/libavcodec/vulkan_decode.c +++ b/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; |