diff options
author | Lynne <dev@lynne.ee> | 2023-05-29 23:16:33 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2023-05-29 23:26:10 +0200 |
commit | 9f9534f5b643f7349396eb33599c4895d1faefa8 (patch) | |
tree | 1f7481290657a560802412d465540622ae0ff475 | |
parent | ee664f41dbd94d896c5b45fa0d916a0b82f22b34 (diff) | |
download | ffmpeg-9f9534f5b643f7349396eb33599c4895d1faefa8.tar.gz |
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.
-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 f79ca7f229..889c67a15f 100644 --- a/libavcodec/vulkan_decode.c +++ b/libavcodec/vulkan_decode.c @@ -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; |