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
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
maxStdSPSCount
is the maximum number of SPS parameters that theVkVideoSessionParametersKHR
can contain. -
maxStdPPSCount
is the maximum number of PPS parameters that theVkVideoSessionParametersKHR
can contain. -
pParametersAddInfo
isNULL
or a pointer to aVkVideoEncodeH264SessionParametersAddInfoEXT
structure 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.