C Specification
The VkVideoEncodeH265NaluSliceSegmentInfoEXT structure representing a slice segment is defined as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265NaluSliceSegmentInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t ctbCount;
const StdVideoEncodeH265ReferenceListsInfo* pStdReferenceFinalLists;
const StdVideoEncodeH265SliceSegmentHeader* pStdSliceSegmentHeader;
} VkVideoEncodeH265NaluSliceSegmentInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
ctbCount
is the number of CTBs in this slice segment. -
pStdReferenceFinalLists
isNULL
or a pointer to aStdVideoEncodeH265ReferenceListsInfo
structure specifying the reference lists to be used for the current slice segment. IfpStdReferenceFinalLists
is notNULL
, these reference lists override the reference lists provided in VkVideoEncodeH265VclFrameInfoEXT::pStdReferenceFinalLists
. -
pStdSliceSegmentHeader
is a pointer to aStdVideoEncodeH265SliceSegmentHeader
structure specifying the slice segment header for the current slice segment.
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.