vulkan: Add missing since markers

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7277>
This commit is contained in:
Edward Hervey 2024-07-25 17:06:39 +02:00 committed by GStreamer Marge Bot
parent 30c2f67e49
commit a38e244794

View file

@ -39,6 +39,11 @@ struct _GstVulkanVideoProfile
VkVideoProfileInfoKHR profile;
union {
VkVideoDecodeUsageInfoKHR decode;
/**
* GstVulkanVideoProfile.usage.encode:
*
* Since: 1.26
**/
VkVideoEncodeUsageInfoKHR encode;
} usage;
@ -46,7 +51,17 @@ struct _GstVulkanVideoProfile
VkBaseInStructure base;
VkVideoDecodeH264ProfileInfoKHR h264dec;
VkVideoDecodeH265ProfileInfoKHR h265dec;
/**
* GstVulkanVideoProfile.usage.codec.h264enc:
*
* Since: 1.26
**/
VkVideoEncodeH264ProfileInfoKHR h264enc;
/**
* GstVulkanVideoProfile.usage.codec.h265enc:
*
* Since: 1.26
**/
VkVideoEncodeH265ProfileInfoKHR h265enc;
} codec;
#endif
@ -68,7 +83,17 @@ struct _GstVulkanVideoCapabilities
VkBaseInStructure base;
VkVideoDecodeH264CapabilitiesKHR h264dec;
VkVideoDecodeH265CapabilitiesKHR h265dec;
/**
* GstVulkanVideoCapabilities.codec.h264enc:
*
* Since: 1.26
*/
VkVideoEncodeH264CapabilitiesKHR h264enc;
/**
* GstVulkanVideoCapabilities.codec.h265enc:
*
* Since: 1.26
*/
VkVideoEncodeH265CapabilitiesKHR h265enc;
} codec;
#endif