C Specification
The VkVideoDecodeH265SessionCreateInfoEXT structure is defined as:
// Provided by VK_EXT_video_decode_h265
typedef struct VkVideoDecodeH265SessionCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkVideoDecodeH265CreateFlagsEXT flags;
const VkExtensionProperties* pStdExtensionVersion;
} VkVideoDecodeH265SessionCreateInfoEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
flagsis reserved for future use. -
pStdExtensionVersionis a pointer to a VkExtensionProperties structure specifying H.265 codec extensions.
Description
A VkVideoDecodeH265SessionCreateInfoEXT structure can be chained to VkVideoSessionCreateInfoKHR when the function vkCreateVideoSessionKHR is called to create a video session for H.265 decode operations.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.