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                          sliceCount;
    const uint32_t*                   pSliceOffsets;
} VkVideoDecodeH265PictureInfoEXT;

Members

  • sType is the type of this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • pStdPictureInfo is a pointer to a StdVideoDecodeH265PictureInfo structure specifying codec standard specific picture information from the H.265 specification.

  • sliceCount is the number of slices in this picture.

  • pSliceOffsets is a pointer to an array of sliceCount offsets indicating the start offset of each slice within the bitstream buffer.

Description

Valid Usage (Implicit)
  • VUID-VkVideoDecodeH265PictureInfoEXT-sType-sType
    sType must be VK_STRUCTURE_TYPE_VIDEO_DECODE_H265_PICTURE_INFO_EXT

  • VUID-VkVideoDecodeH265PictureInfoEXT-pStdPictureInfo-parameter
    pStdPictureInfo must be a valid pointer to a StdVideoDecodeH265PictureInfo value

  • VUID-VkVideoDecodeH265PictureInfoEXT-pSliceOffsets-parameter
    pSliceOffsets must be a valid pointer to an array of sliceCount uint32_t values

  • VUID-VkVideoDecodeH265PictureInfoEXT-sliceCount-arraylength
    sliceCount must be greater than 0

See Also

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.

Copyright 2014-2022 The Khronos Group Inc.

SPDX-License-Identifier: CC-BY-4.0