vulkan_decode: fix typo when setting AV1 capabilities

All pNext chained structs in Vulkan are defined as void *, so it doesn't
help catch this.
This commit is contained in:
Lynne 2023-05-29 23:16:33 +02:00
parent ee664f41db
commit 9f9534f5b6
No known key found for this signature in database
GPG Key ID: A2FEA5F03F034464
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ static VkResult vulkan_setup_profile(AVCodecContext *avctx,
h265_profile->sType = VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PROFILE_INFO_KHR;
h265_profile->stdProfileIdc = cur_profile;
} else if (avctx->codec_id == AV_CODEC_ID_AV1) {
dec_caps->pNext = &av1_caps;
dec_caps->pNext = av1_caps;
usage->pNext = av1_profile;
av1_profile->sType = VK_STRUCTURE_TYPE_VIDEO_DECODE_AV1_PROFILE_INFO_MESA;
av1_profile->stdProfileIdc = cur_profile;