C Specification
The VkVideoEncodeH265SessionParametersCreateInfoEXT
structure is
defined as:
// Provided by VK_EXT_video_encode_h265
typedef struct VkVideoEncodeH265SessionParametersCreateInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t maxStdVPSCount;
uint32_t maxStdSPSCount;
uint32_t maxStdPPSCount;
const VkVideoEncodeH265SessionParametersAddInfoEXT* pParametersAddInfo;
} VkVideoEncodeH265SessionParametersCreateInfoEXT;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
maxStdVPSCount
is the maximum number of entries of typeStdVideoH265VideoParameterSet
withinVkVideoSessionParametersKHR
. -
maxStdSPSCount
is the maximum number of entries of typeStdVideoH265SequenceParameterSet
withinVkVideoSessionParametersKHR
. -
maxStdPPSCount
is the maximum number of entries of typeStdVideoH265PictureParameterSet
withinVkVideoSessionParametersKHR
. -
pParametersAddInfo
isNULL
or a pointer to a VkVideoEncodeH265SessionParametersAddInfoEXT structure specifying the video session parameters to add upon creation of this object.
Description
When a VkVideoSessionParametersKHR object contains
maxStdVPSCount
StdVideoH265VideoParameterSet
entries, no
additional StdVideoH265VideoParameterSet
entries can be added to it,
and VK_ERROR_TOO_MANY_OBJECTS
will be returned if an attempt is made
to add these entries.
When a VkVideoSessionParametersKHR object contains
maxStdSPSCount
StdVideoH265SequenceParameterSet
entries, no
additional StdVideoH265SequenceParameterSet
entries can be added to it,
and VK_ERROR_TOO_MANY_OBJECTS
will be returned if an attempt is made
to add these entries.
When a VkVideoSessionParametersKHR object contains
maxStdPPSCount
StdVideoH265PictureParameterSet
entries, no
additional StdVideoH265PictureParameterSet
entries can be added to it,
and VK_ERROR_TOO_MANY_OBJECTS
will be returned if an attempt is made
to add these entries.
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.