C Specification
The VkVideoEncodeH264SessionParametersAddInfoEXT structure is defined
as:
// Provided by VK_EXT_video_encode_h264
typedef struct VkVideoEncodeH264SessionParametersAddInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t stdSPSCount;
const StdVideoH264SequenceParameterSet* pStdSPSs;
uint32_t stdPPSCount;
const StdVideoH264PictureParameterSet* pStdPPSs;
} VkVideoEncodeH264SessionParametersAddInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
stdSPSCountis the number of SPS elements in thepStdSPSs. Its value must be less than or equal to the value ofmaxStdSPSCount. -
pStdSPSsis a pointer to an array ofStdVideoH264SequenceParameterSetstructures representing H.264 sequence parameter sets. Each element of the array must have a unique H.264 SPS ID. -
stdPPSCountis the number of PPS provided inpStdPPSs. Its value must be less than or equal to the value ofmaxStdPPSCount. -
pStdPPSsis a pointer to an array ofStdVideoH264PictureParameterSetstructures representing H.264 picture parameter sets. Each element of the array must have a unique H.264 SPS-PPS ID pair.
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.