Enum
VkVideoEncodeFlagBitsKHR
Video encode flags
Bits which can be set in VkVideoEncodeInfoKHR::flags,
specifying video encode flags, are:
typedef enum VkVideoEncodeFlagBitsKHR {
// Provided by extensions
VK_VIDEO_ENCODE_INTRA_REFRESH_BIT_KHR = 0x00000004,
VK_VIDEO_ENCODE_WITH_QUANTIZATION_DELTA_MAP_BIT_KHR = 0x00000001,
VK_VIDEO_ENCODE_WITH_EMPHASIS_MAP_BIT_KHR = 0x00000002,
} VkVideoEncodeFlagBitsKHR;
pub struct VideoEncodeFlagBitsKHR(u32);
impl VideoEncodeFlagBitsKHR {
pub const INTRA_REFRESH: Self = 0x00000004;
pub const WITH_QUANTIZATION_DELTA_MAP: Self = 0x00000001;
pub const WITH_EMPHASIS_MAP: Self = 0x00000002;
}
VK_VIDEO_ENCODE_WITH_QUANTIZATION_DELTA_MAP_BIT_KHRspecifies the use of a quantization delta map in the issued video encode operations.VK_VIDEO_ENCODE_WITH_EMPHASIS_MAP_BIT_KHRspecifies the use of an emphasis map in the issued video encode operations.VK_VIDEO_ENCODE_INTRA_REFRESH_BIT_KHRenables intra refresh for the encoded picture.
Type
Enum