C Specification
The VkVideoEncodeH265SessionParametersAddInfoEXT structure is defined
as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265SessionParametersAddInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t stdVPSCount;
const StdVideoH265VideoParameterSet* pStdVPSs;
uint32_t stdSPSCount;
const StdVideoH265SequenceParameterSet* pStdSPSs;
uint32_t stdPPSCount;
const StdVideoH265PictureParameterSet* pStdPPSs;
} VkVideoEncodeH265SessionParametersAddInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
stdVPSCountis the number of VPS elements inpStdVPSs. -
pStdVPSsis a pointer to an array ofstdVPSCountStdVideoH265VideoParameterSetstructures representing H.265 video parameter sets. -
stdSPSCountis the number of SPS elements inpStdSPSs. -
pStdSPSsis a pointer to an array ofstdSPSCountStdVideoH265SequenceParameterSetstructures representing H.265 sequence parameter sets. -
stdPPSCountis the number of PPS elements inpStdPPSs. -
pStdPPSsis a pointer to an array ofstdPPSCountStdVideoH265PictureParameterSetstructures representing H.265 picture parameter sets.
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.