C Specification
The VkVideoDecodeH265SessionParametersAddInfoEXT structure is defined
as:
// Provided by VK_EXT_video_decode_h265
typedef struct VkVideoDecodeH265SessionParametersAddInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t stdVPSCount;
const StdVideoH265VideoParameterSet* pStdVPSs;
uint32_t stdSPSCount;
const StdVideoH265SequenceParameterSet* pStdSPSs;
uint32_t stdPPSCount;
const StdVideoH265PictureParameterSet* pStdPPSs;
} VkVideoDecodeH265SessionParametersAddInfoEXT;
Members
-
sTypeis the type of 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 in thepStdSPSs. Its value must be less than or equal to the value ofmaxStdSPSCount. -
pStdSPSsis a pointer to an array ofStdVideoH265SequenceParameterSetstructures representing H.265 sequence parameter sets. Each element of the array must have a unique H.265 VPS-SPS ID pair. -
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 ofStdVideoH265PictureParameterSetstructures representing H.265 picture parameter sets. Each element of the array entry must have a unique H.265 VPS-SPS-PPS ID tuple.
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.