C Specification
The VkVideoDecodeH264InlineSessionParametersInfoKHR
structure is
defined as:
// Provided by VK_KHR_video_decode_h264 with VK_KHR_video_maintenance2
typedef struct VkVideoDecodeH264InlineSessionParametersInfoKHR {
VkStructureType sType;
const void* pNext;
const StdVideoH264SequenceParameterSet* pStdSPS;
const StdVideoH264PictureParameterSet* pStdPPS;
} VkVideoDecodeH264InlineSessionParametersInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pStdSPS
isNULL
or a pointer to an instance of theStdVideoH264SequenceParameterSet
structure describing the active H.264 SPS. -
pStdPPS
isNULL
or a pointer to an instance of theStdVideoH264PictureParameterSet
structure describing the active H.264 PPS.
Description
If pStdSPS
or pStdPPS
is not NULL
, the issued video decode
operations will use the parameter sets specified by them, respectively,
instead of the corresponding parameter sets 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.