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;
- sTypeis a VkStructureType value identifying this structure.
- pNextis- NULLor a pointer to a structure extending this structure.
- pStdSPSis- NULLor a pointer to an instance of the- StdVideoH264SequenceParameterSetstructure describing the active H.264 SPS.
- pStdPPSis- NULLor a pointer to an instance of the- StdVideoH264PictureParameterSetstructure 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