C Specification
The VkVideoDecodeH265PictureInfoEXT
structure is defined as:
// Provided by VK_EXT_video_decode_h265
typedef struct VkVideoDecodeH265PictureInfoEXT {
VkStructureType sType;
const void* pNext;
StdVideoDecodeH265PictureInfo* pStdPictureInfo;
uint32_t slicesCount;
const uint32_t* pSlicesDataOffsets;
} VkVideoDecodeH265PictureInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pStdPictureInfo
is a pointer to aStdVideoDecodeH265PictureInfo
structure specifying codec standard specific picture information from the H.265 specification. -
slicesCount
is the number of slices in this picture. -
pSlicesDataOffsets
is a pointer to an array ofslicesCount
offsets indicating the start offset of each slice within the bitstream buffer.
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.