Searched refs:min_qp_p (Results 1 - 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | amfenc_hevc.c | 81 { "min_qp_p", "min quantization parameter for P-frame", OFFSET(min_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() 244 if (ctx->min_qp_p != -1) { in amf_encode_init_hevc() 245 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_HEVC_MIN_QP_P, ctx->min_qp_p); in amf_encode_init_hevc()
|
H A D | qsvenc.h | 107 { "min_qp_p", "Minimum video quantizer scale for P frame", OFFSET(qsv.min_qp_p), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 51, VE}, \ 224 int min_qp_p; member
|
H A D | amfenc.h | 116 int min_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() 860 if (q->min_qp_p >= 0) in init_video_param() 861 q->extco2.MinQPP = q->min_qp_p > 51 ? 51 : q->min_qp_p; in init_video_param()
|
Completed in 4 milliseconds