Searched refs:max_qp_p (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | amfenc_hevc.c | 82 { "max_qp_p", "max quantization parameter for P-frame", OFFSET(max_qp_p), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 51, VE }, 170 ctx->min_qp_p != -1 || ctx->max_qp_p != -1 || in amf_encode_init_hevc() 250 if (ctx->max_qp_p != -1) { in amf_encode_init_hevc() 251 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_HEVC_MAX_QP_P, ctx->max_qp_p); in amf_encode_init_hevc()
|
H A D | qsvenc.h | 106 { "max_qp_p", "Maximum video quantizer scale for P frame", OFFSET(qsv.max_qp_p), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 51, VE}, \ 223 int max_qp_p; member
|
H A D | amfenc.h | 117 int max_qp_p; member
|
H A D | qsvenc.c | 841 (q->max_qp_p >= 0 && q->min_qp_p >= 0 && q->min_qp_p > q->max_qp_p) || in init_video_param() 862 if (q->max_qp_p >= 0) in init_video_param() 863 q->extco2.MaxQPP = q->max_qp_p > 51 ? 51 : q->max_qp_p; in init_video_param()
|
Completed in 4 milliseconds