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
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
stdVPSCount
is the number of VPS elements inpStdVPSs
. -
pStdVPSs
is a pointer to an array ofstdVPSCount
StdVideoH265VideoParameterSet
structures representing H.265 video parameter sets. -
stdSPSCount
is the number of SPS elements inpStdSPSs
. -
pStdSPSs
is a pointer to an array ofstdSPSCount
StdVideoH265SequenceParameterSet
structures representing H.265 sequence parameter sets. -
stdPPSCount
is the number of PPS elements inpStdPPSs
. -
pStdPPSs
is a pointer to an array ofstdPPSCount
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.