VkVideoEncodeH264SessionParametersGetInfoKHR(3)
Name
VkVideoEncodeH264SessionParametersGetInfoKHR - Structure specifying parameters for retrieving encoded H.264 parameter set data
C Specification
The VkVideoEncodeH264SessionParametersGetInfoKHR
structure is defined
as:
// Provided by VK_KHR_video_encode_h264
typedef struct VkVideoEncodeH264SessionParametersGetInfoKHR {
VkStructureType sType;
const void* pNext;
VkBool32 writeStdSPS;
VkBool32 writeStdPPS;
uint32_t stdSPSId;
uint32_t stdPPSId;
} VkVideoEncodeH264SessionParametersGetInfoKHR;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
writeStdSPS
indicates whether the encoded H.264 sequence parameter set identified bystdSPSId
is requested to be retrieved. -
writeStdPPS
indicates whether the encoded H.264 picture parameter set identified by the pair constructed fromstdSPSId
andstdPPSId
is requested to be retrieved. -
stdSPSId
specifies the H.264 sequence parameter set ID used to identify the retrieved H.264 sequence and/or picture parameter set(s). -
stdPPSId
specifies the H.264 picture parameter set ID used to identify the retrieved H.264 picture parameter set whenwriteStdPPS
isVK_TRUE
.
Description
When this structure is specified in the pNext
chain of the
VkVideoEncodeSessionParametersGetInfoKHR structure passed to
vkGetEncodedVideoSessionParametersKHR, the command will write encoded
parameter data to the output buffer in the following order:
-
The H.264 sequence parameter set identified by
stdSPSId
, ifwriteStdSPS
isVK_TRUE
. -
The H.264 picture parameter set identified by the pair constructed from
stdSPSId
andstdPPSId
, ifwriteStdPPS
isVK_TRUE
.
See Also
VK_KHR_video_encode_h264, VkBool32
, VkStructureType
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.