VkVideoDecodeH265InlineSessionParametersInfoKHR(3)
Name
VkVideoDecodeH265InlineSessionParametersInfoKHR - Structure specifies inline H.265 decoder parameter set information
C Specification
The VkVideoDecodeH265InlineSessionParametersInfoKHR
structure is
defined as:
// Provided by VK_KHR_video_decode_h265 with VK_KHR_video_maintenance2
typedef struct VkVideoDecodeH265InlineSessionParametersInfoKHR {
VkStructureType sType;
const void* pNext;
const StdVideoH265VideoParameterSet* pStdVPS;
const StdVideoH265SequenceParameterSet* pStdSPS;
const StdVideoH265PictureParameterSet* pStdPPS;
} VkVideoDecodeH265InlineSessionParametersInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
pStdVPS
isNULL
or a pointer to an instance of theStdVideoH265VideoParameterSet
structure describing the active H.265 VPS. -
pStdSPS
isNULL
or a pointer to an instance of theStdVideoH265SequenceParameterSet
structure describing the active H.265 SPS. -
pStdPPS
isNULL
or a pointer to an instance of theStdVideoH265PictureParameterSet
structure describing the active H.265 PPS.
Description
If pStdVPS
, pStdSPS
, or pStdPPS
is not NULL
, the issued
video decode operations will use the parameter sets specified by them,
respectively, instead of the corresponding active 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.