C Specification
The VkVideoEncodeH264SessionParametersCreateInfoEXT structure is defined as:
// Provided by VK_EXT_video_encode_h264
typedef struct VkVideoEncodeH264SessionParametersCreateInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t maxStdSPSCount;
uint32_t maxStdPPSCount;
const VkVideoEncodeH264SessionParametersAddInfoEXT* pParametersAddInfo;
} VkVideoEncodeH264SessionParametersCreateInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
maxStdSPSCountis the maximum number of SPS parameters that theVkVideoSessionParametersKHRcan contain. -
maxStdPPSCountis the maximum number of PPS parameters that theVkVideoSessionParametersKHRcan contain. -
pParametersAddInfoisNULLor a pointer to aVkVideoEncodeH264SessionParametersAddInfoEXTstructure specifying H.264 parameters to add upon object creation.
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.