Structures
VkVideoEncodeH264QpKHR
Structure describing H.264 QP values per picture type
The VkVideoEncodeH264QpKHR structure is defined as:
typedef struct VkVideoEncodeH264QpKHR {
int32_t qpI;
int32_t qpP;
int32_t qpB;
} VkVideoEncodeH264QpKHR;
pub struct VideoEncodeH264QpKHR {
qp_i: i32,
qp_p: i32,
qp_b: i32,
}
qpIis the QP to be used for I pictures.qpPis the QP to be used for P pictures.qpBis the QP to be used for B pictures.
Parent
VK_KHR_video_encode_h264Type
Structures