summaryrefslogtreecommitdiff
path: root/libavcodec/vulkan_video.c
Commit message (Collapse)AuthorAge
* libavcodec: fix -Wint-conversion in vulkanSam James2024-01-06
| | | | | | | | | | | | | | | | | | | FIx warnings (soon to be errors in GCC 14, already so in Clang 15): ``` src/libavcodec/vulkan_av1.c: In function ‘vk_av1_create_params’: src/libavcodec/vulkan_av1.c:183:43: error: initialization of ‘long long unsigned int’ from ‘void *’ makes integer from pointer without a cast [-Wint-conversion] 183 | .videoSessionParametersTemplate = NULL, | ^~~~ src/libavcodec/vulkan_av1.c:183:43: note: (near initialization for ‘(anonymous).videoSessionParametersTemplate’) ``` Use Vulkan's VK_NULL_HANDLE instead of bare NULL. Fix Trac ticket #10724. Was reported downstream in Gentoo at https://bugs.gentoo.org/919067. Signed-off-by: Sam James <sam@gentoo.org>
* vulkan_decode: fix the print format of VkDeviceSizeJun Zhao2023-11-21
| | | | | | | VkDeviceSize represents device memory size and offset values as uint64_t in Spec. Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
* vulkan_decode: convert max level from vulkan to av for comparisonsLynne2023-09-08
|
* vulkan: replace usage of %lu with %"SIZE_SPECIFIER"Lynne2023-05-29
|
* av1dec: add Vulkan hwaccelLynne2023-05-29
|
* libavcodec: add Vulkan common video codeLynne2023-05-29