C Specification
The VkVideoEncodeH265PictureInfoEXT structure representing a frame encode operation is defined as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265PictureInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t naluSliceSegmentEntryCount;
const VkVideoEncodeH265NaluSliceSegmentInfoEXT* pNaluSliceSegmentEntries;
const StdVideoEncodeH265PictureInfo* pStdPictureInfo;
} VkVideoEncodeH265PictureInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
naluSliceSegmentEntryCountis the number of slice segment NALUs in the frame. -
pNaluSliceSegmentEntriesis a pointer to an array of VkVideoEncodeH265NaluSliceSegmentInfoEXT structures specifying the division of the current picture into slice segments and the properties of these slice segments. -
pStdPictureInfois a pointer to aStdVideoEncodeH265PictureInfostructure specifying the syntax and other codec-specific information from the H.265 specification, associated with this picture.
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.