VkVideoEncodeH264SessionParametersFeedbackInfoKHR(3)
Name
VkVideoEncodeH264SessionParametersFeedbackInfoKHR - Structure providing feedback about the requested H.264 video session parameters
C Specification
The VkVideoEncodeH264SessionParametersFeedbackInfoKHR structure is
defined as:
// Provided by VK_KHR_video_encode_h264
typedef struct VkVideoEncodeH264SessionParametersFeedbackInfoKHR {
VkStructureType sType;
void* pNext;
VkBool32 hasStdSPSOverrides;
VkBool32 hasStdPPSOverrides;
} VkVideoEncodeH264SessionParametersFeedbackInfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
hasStdSPSOverridesindicates whether any of the parameters of the requested H.264 sequence parameter set, if one was requested via VkVideoEncodeH264SessionParametersGetInfoKHR::writeStdSPS, were overridden by the implementation. -
hasStdPPSOverridesindicates whether any of the parameters of the requested H.264 picture parameter set, if one was requested via VkVideoEncodeH264SessionParametersGetInfoKHR::writeStdPPS, were overridden by the implementation.
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.