VkVideoDecodeVP9CapabilitiesKHR(3)

Name

VkVideoDecodeVP9CapabilitiesKHR - Structure describing VP9 decode capabilities

C Specification

When calling vkGetPhysicalDeviceVideoCapabilitiesKHR to query the capabilities for an VP9 decode profile, the VkVideoCapabilitiesKHR::pNext chain must include a VkVideoDecodeVP9CapabilitiesKHR structure that will be filled with the profile-specific capabilities.

The VkVideoDecodeVP9CapabilitiesKHR structure is defined as:

// Provided by VK_KHR_video_decode_vp9
typedef struct VkVideoDecodeVP9CapabilitiesKHR {
    VkStructureType     sType;
    void*               pNext;
    StdVideoVP9Level    maxLevel;
} VkVideoDecodeVP9CapabilitiesKHR;

Members

  • sType is a VkStructureType value identifying this structure.

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

  • maxLevel is a StdVideoVP9Level value specifying the maximum VP9 level supported by the profile, as defined in section A.1 of the VP9 Specification.

Description

Valid Usage (Implicit)
  • VUID-VkVideoDecodeVP9CapabilitiesKHR-sType-sType
    sType must be VK_STRUCTURE_TYPE_VIDEO_DECODE_VP9_CAPABILITIES_KHR

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.