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
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
vpsStdCount
is the number of VPS elements inpVpsStd
. -
pVpsStd
is a pointer to an array ofvpsStdCount
StdVideoH265VideoParameterSet
structures representing H.265 video parameter sets. -
spsStdCount
is the number of SPS elements inpSpsStd
. -
pSpsStd
is a pointer to an array ofspsStdCount
StdVideoH265SequenceParameterSet
structures representing H.265 sequence parameter sets. -
ppsStdCount
is the number of PPS elements inpPpsStd
. -
pPpsStd
is a pointer to an array ofppsStdCount
StdVideoH265PictureParameterSet
structures 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.