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