VkVideoDecodeAV1InlineSessionParametersInfoKHR(3)
Name
VkVideoDecodeAV1InlineSessionParametersInfoKHR - Structure specifies inline AV1 decoder parameter set information
C Specification
The VkVideoDecodeAV1InlineSessionParametersInfoKHR
structure is
defined as:
// Provided by VK_KHR_video_decode_av1 with VK_KHR_video_maintenance2
typedef struct VkVideoDecodeAV1InlineSessionParametersInfoKHR {
VkStructureType sType;
const void* pNext;
const StdVideoAV1SequenceHeader* pStdSequenceHeader;
} VkVideoDecodeAV1InlineSessionParametersInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pStdSequenceHeader
isNULL
or a pointer to an instance of theStdVideoAV1SequenceHeader
structure describing the active AV1 sequence header.
Description
If pStdSequenceHeader
is not NULL
, the issued video decode
operations will use the specified sequence header parameters instead of the
active sequence header being sourced from the bound video session parameters
object.
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.