C Specification
The VkVideoEncodeH264DpbSlotInfoEXT structure correlates a DPB Slot index with codec-specific information and is defined as:
// Provided by VK_EXT_video_encode_h264
typedef struct VkVideoEncodeH264DpbSlotInfoEXT {
VkStructureType sType;
const void* pNext;
int8_t slotIndex;
const StdVideoEncodeH264PictureInfo* pStdPictureInfo;
} VkVideoEncodeH264DpbSlotInfoEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
slotIndexis the slot index for this picture.slotIndexmust match theslotIndexinpSetupReferenceSlotof VkVideoEncodeInfoKHR in the command used to encode the corresponding picture. -
pStdPictureInfois a pointer to aStdVideoEncodeH264PictureInfostructure specifying codec standard specific syntax/information associated with this picture from the H.264 specification.
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.