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 vpsStdCount;
const StdVideoH265VideoParameterSet* pVpsStd;
uint32_t spsStdCount;
const StdVideoH265SequenceParameterSet* pSpsStd;
uint32_t ppsStdCount;
const StdVideoH265PictureParameterSet* pPpsStd;
} VkVideoEncodeH265SessionParametersAddInfoEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
vpsStdCountis the number of VPS elements inpVpsStd. -
pVpsStdis a pointer to an array ofvpsStdCountStdVideoH265VideoParameterSetstructures representing H.265 video parameter sets. -
spsStdCountis the number of SPS elements inpSpsStd. -
pSpsStdis a pointer to an array ofspsStdCountStdVideoH265SequenceParameterSetstructures representing H.265 sequence parameter sets. -
ppsStdCountis the number of PPS elements inpPpsStd. -
pPpsStdis a pointer to an array ofppsStdCountStdVideoH265PictureParameterSetstructures 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.