C Specification
The VkVideoDecodeH264PictureInfoEXT structure represents a picture decode operation and is defined as:
// Provided by VK_EXT_video_decode_h264
typedef struct VkVideoDecodeH264PictureInfoEXT {
VkStructureType sType;
const void* pNext;
const StdVideoDecodeH264PictureInfo* pStdPictureInfo;
uint32_t sliceCount;
const uint32_t* pSliceOffsets;
} VkVideoDecodeH264PictureInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pStdPictureInfo
is a pointer to aStdVideoDecodeH264PictureInfo
structure specifying the codec standard specific picture information from the H.264 specification. -
sliceCount
is the number of slices in this picture. -
pSliceOffsets
is a pointer to an array ofsliceCount
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.