Structures
VkVideoDecodeH264InlineSessionParametersInfoKHR
Structure specifies inline H.264 decoder parameter set information
The VkVideoDecodeH264InlineSessionParametersInfoKHR
structure is
defined as:
typedef struct VkVideoDecodeH264InlineSessionParametersInfoKHR {
VkStructureType sType;
const void* pNext;
const StdVideoH264SequenceParameterSet* pStdSPS;
const StdVideoH264PictureParameterSet* pStdPPS;
} VkVideoDecodeH264InlineSessionParametersInfoKHR;
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.
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.
Valid Usage (Implicit)
VUID-VkVideoDecodeH264InlineSessionParametersInfoKHR-sType-sType
sType
must be VK_STRUCTURE_TYPE_VIDEO_DECODE_H264_INLINE_SESSION_PARAMETERS_INFO_KHR
VUID-VkVideoDecodeH264InlineSessionParametersInfoKHR-pStdSPS-parameter
If pStdSPS
is not NULL
, pStdSPS
must be a valid pointer to a valid StdVideoH264SequenceParameterSet
value
VUID-VkVideoDecodeH264InlineSessionParametersInfoKHR-pStdPPS-parameter
If pStdPPS
is not NULL
, pStdPPS
must be a valid pointer to a valid StdVideoH264PictureParameterSet
value