C Specification
The VkVideoEncodeH265ReferenceListsEXT structure representing reference lists is defined as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265ReferenceListsEXT {
VkStructureType sType;
const void* pNext;
uint8_t referenceList0EntryCount;
const VkVideoEncodeH265DpbSlotInfoEXT* pReferenceList0Entries;
uint8_t referenceList1EntryCount;
const VkVideoEncodeH265DpbSlotInfoEXT* pReferenceList1Entries;
const StdVideoEncodeH265ReferenceModifications* pReferenceModifications;
} VkVideoEncodeH265ReferenceListsEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
referenceList0EntryCountis the number of reference pictures in reference list L0 and is identical toStdVideoEncodeH265SliceSegmentHeader::num_ref_idx_l0_active_minus1+ 1. -
pReferenceList0Entriesis a pointer to an array ofreferenceList0EntryCountVkVideoEncodeH265DpbSlotInfoEXT structures specifying the reference list L0 entries for the current picture. -
referenceList1EntryCountis the number of reference pictures in reference list L1 and is identical toStdVideoEncodeH265SliceSegmentHeader::num_ref_idx_l1_active_minus1+ 1. -
pReferenceList1Entriesis a pointer to an array ofreferenceList1EntryCountVkVideoEncodeH265DpbSlotInfoEXT structures specifying the reference list L1 entries for the current picture. -
pReferenceModificationsis a pointer to aStdVideoEncodeH265ReferenceModificationsstructure specifying reference list modifications.
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.