Enum
VkVideoCodecOperationFlagBitsKHR
Video codec operation bits
Possible values of VkVideoProfileInfoKHR::videoCodecOperation
,
specifying the type of video coding operation and video compression standard
used by a video profile, are:
typedef enum VkVideoCodecOperationFlagBitsKHR {
VK_VIDEO_CODEC_OPERATION_NONE_KHR = 0,
} VkVideoCodecOperationFlagBitsKHR;
VK_VIDEO_CODEC_OPERATION_NONE_KHR
indicates no support for any video codec operations.VK_VIDEO_CODEC_OPERATION_DECODE_H264_BIT_KHR
specifies support for H.264 decode operations.VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_KHR
specifies support for H.265 decode operations.VK_VIDEO_CODEC_OPERATION_DECODE_AV1_BIT_KHR
specifies support for AV1 decode operations.VK_VIDEO_CODEC_OPERATION_ENCODE_H264_BIT_KHR
specifies support for H.264 encode operations.VK_VIDEO_CODEC_OPERATION_ENCODE_H265_BIT_KHR
specifies support for H.265 encode operations.