C Specification
The structure VkVideoDecodeH264PictureInfoEXT representing a picture decode operation is defined as:
// Provided by VK_EXT_video_decode_h264
typedef struct VkVideoDecodeH264PictureInfoEXT {
VkStructureType sType;
const void* pNext;
const StdVideoDecodeH264PictureInfo* pStdPictureInfo;
uint32_t slicesCount;
const uint32_t* pSlicesDataOffsets;
} VkVideoDecodeH264PictureInfoEXT;
Members
-
sTypeis the type of this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
pStdPictureInfois a pointer to the codec standard specific picture information from H.264 spec. -
slicesCountis the number of slices in this picture. -
pSlicesDataOffsetsis an array ofslicesCountoffsets 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.