mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
vulkan: Add missing since markers
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7277>
This commit is contained in:
parent
30c2f67e49
commit
a38e244794
1 changed files with 25 additions and 0 deletions
|
@ -39,6 +39,11 @@ struct _GstVulkanVideoProfile
|
||||||
VkVideoProfileInfoKHR profile;
|
VkVideoProfileInfoKHR profile;
|
||||||
union {
|
union {
|
||||||
VkVideoDecodeUsageInfoKHR decode;
|
VkVideoDecodeUsageInfoKHR decode;
|
||||||
|
/**
|
||||||
|
* GstVulkanVideoProfile.usage.encode:
|
||||||
|
*
|
||||||
|
* Since: 1.26
|
||||||
|
**/
|
||||||
VkVideoEncodeUsageInfoKHR encode;
|
VkVideoEncodeUsageInfoKHR encode;
|
||||||
} usage;
|
} usage;
|
||||||
|
|
||||||
|
@ -46,7 +51,17 @@ struct _GstVulkanVideoProfile
|
||||||
VkBaseInStructure base;
|
VkBaseInStructure base;
|
||||||
VkVideoDecodeH264ProfileInfoKHR h264dec;
|
VkVideoDecodeH264ProfileInfoKHR h264dec;
|
||||||
VkVideoDecodeH265ProfileInfoKHR h265dec;
|
VkVideoDecodeH265ProfileInfoKHR h265dec;
|
||||||
|
/**
|
||||||
|
* GstVulkanVideoProfile.usage.codec.h264enc:
|
||||||
|
*
|
||||||
|
* Since: 1.26
|
||||||
|
**/
|
||||||
VkVideoEncodeH264ProfileInfoKHR h264enc;
|
VkVideoEncodeH264ProfileInfoKHR h264enc;
|
||||||
|
/**
|
||||||
|
* GstVulkanVideoProfile.usage.codec.h265enc:
|
||||||
|
*
|
||||||
|
* Since: 1.26
|
||||||
|
**/
|
||||||
VkVideoEncodeH265ProfileInfoKHR h265enc;
|
VkVideoEncodeH265ProfileInfoKHR h265enc;
|
||||||
} codec;
|
} codec;
|
||||||
#endif
|
#endif
|
||||||
|
@ -68,7 +83,17 @@ struct _GstVulkanVideoCapabilities
|
||||||
VkBaseInStructure base;
|
VkBaseInStructure base;
|
||||||
VkVideoDecodeH264CapabilitiesKHR h264dec;
|
VkVideoDecodeH264CapabilitiesKHR h264dec;
|
||||||
VkVideoDecodeH265CapabilitiesKHR h265dec;
|
VkVideoDecodeH265CapabilitiesKHR h265dec;
|
||||||
|
/**
|
||||||
|
* GstVulkanVideoCapabilities.codec.h264enc:
|
||||||
|
*
|
||||||
|
* Since: 1.26
|
||||||
|
*/
|
||||||
VkVideoEncodeH264CapabilitiesKHR h264enc;
|
VkVideoEncodeH264CapabilitiesKHR h264enc;
|
||||||
|
/**
|
||||||
|
* GstVulkanVideoCapabilities.codec.h265enc:
|
||||||
|
*
|
||||||
|
* Since: 1.26
|
||||||
|
*/
|
||||||
VkVideoEncodeH265CapabilitiesKHR h265enc;
|
VkVideoEncodeH265CapabilitiesKHR h265enc;
|
||||||
} codec;
|
} codec;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue