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
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
flags
is reserved for future use. -
pStdExtensionVersion
is 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.