You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/vulkan_decode: fix struct type for h265_profile
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
This commit is contained in:
@@ -682,7 +682,7 @@ static VkResult vulkan_setup_profile(AVCodecContext *avctx,
|
|||||||
VkVideoProfileListInfoKHR *profile_list = &prof->profile_list;
|
VkVideoProfileListInfoKHR *profile_list = &prof->profile_list;
|
||||||
|
|
||||||
VkVideoDecodeH264ProfileInfoKHR *h264_profile = &prof->h264_profile;
|
VkVideoDecodeH264ProfileInfoKHR *h264_profile = &prof->h264_profile;
|
||||||
VkVideoDecodeH264ProfileInfoKHR *h265_profile = &prof->h265_profile;
|
VkVideoDecodeH265ProfileInfoKHR *h265_profile = &prof->h265_profile;
|
||||||
VkVideoDecodeAV1ProfileInfoMESA *av1_profile = &prof->av1_profile;
|
VkVideoDecodeAV1ProfileInfoMESA *av1_profile = &prof->av1_profile;
|
||||||
|
|
||||||
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->sw_pix_fmt);
|
const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(avctx->sw_pix_fmt);
|
||||||
|
@@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
typedef struct FFVulkanDecodeProfileData {
|
typedef struct FFVulkanDecodeProfileData {
|
||||||
VkVideoDecodeH264ProfileInfoKHR h264_profile;
|
VkVideoDecodeH264ProfileInfoKHR h264_profile;
|
||||||
VkVideoDecodeH264ProfileInfoKHR h265_profile;
|
VkVideoDecodeH265ProfileInfoKHR h265_profile;
|
||||||
VkVideoDecodeAV1ProfileInfoMESA av1_profile;
|
VkVideoDecodeAV1ProfileInfoMESA av1_profile;
|
||||||
VkVideoDecodeUsageInfoKHR usage;
|
VkVideoDecodeUsageInfoKHR usage;
|
||||||
VkVideoProfileInfoKHR profile;
|
VkVideoProfileInfoKHR profile;
|
||||||
|
Reference in New Issue
Block a user