aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLynne <dev@lynne.ee>2023-05-29 23:16:33 +0200
committerLynne <dev@lynne.ee>2023-05-29 23:26:10 +0200
commit9f9534f5b643f7349396eb33599c4895d1faefa8 (patch)
tree1f7481290657a560802412d465540622ae0ff475
parentee664f41dbd94d896c5b45fa0d916a0b82f22b34 (diff)
downloadffmpeg-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.c2
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;