C Specification
The instance of VkVideoDecodeH264SessionCreateInfoEXT structure can be chained to VkVideoSessionCreateInfoKHR when the function vkCreateVideoSessionKHR is called to create a video session for H.264 decode.
The VkVideoDecodeH264SessionCreateInfoEXT structure is defined as:
// Provided by VK_EXT_video_decode_h264
typedef struct VkVideoDecodeH264SessionCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkVideoDecodeH264CreateFlagsEXT flags;
const VkExtensionProperties* pStdExtensionVersion;
} VkVideoDecodeH264SessionCreateInfoEXT;
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 the specific H.264 codec extensions defined inStdVideoH264Extensions
.
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.