C Specification
// Provided by VK_EXT_video_decode_h264
typedef struct VkVideoDecodeH264SessionParametersAddInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t spsStdCount;
const StdVideoH264SequenceParameterSet* pSpsStd;
uint32_t ppsStdCount;
const StdVideoH264PictureParameterSet* pPpsStd;
} VkVideoDecodeH264SessionParametersAddInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
spsStdCount
is the number of SPS elements in thepSpsStd
. Its value must be less than or equal to the value ofmaxSpsStdCount
. -
pSpsStd
is an array of structures representing H.264 sequence parameter sets. Each StdVideoH264SequenceParameterSet entry must have a unique H.264 SPS ID. -
ppsStdCount
is the number of PPS provided inpPpsStd
. Its value must be less than or equal to the value ofmaxPpsStdCount
. -
pPpsStd
is an array of structures representing H.264 picture parameter sets. Each StdVideoH264PictureParameterSet entry must have a unique H.264 SPS-PPS ID pair.
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.