Home
last modified time | relevance | path

Searched refs:qp_i (Results 1 - 5 of 5) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dhevc_cabac.c1101 int qp_i, offset; in ff_hevc_hls_residual_coding() local
1110 qp_i = av_clip(qp_y + offset, - s->ps.sps->qp_bd_offset, 57); in ff_hevc_hls_residual_coding()
1112 if (qp_i < 30) in ff_hevc_hls_residual_coding()
1113 qp = qp_i; in ff_hevc_hls_residual_coding()
1114 else if (qp_i > 43) in ff_hevc_hls_residual_coding()
1115 qp = qp_i - 6; in ff_hevc_hls_residual_coding()
1117 qp = qp_c[qp_i - 30]; in ff_hevc_hls_residual_coding()
1119 if (qp_i > 51) in ff_hevc_hls_residual_coding()
1122 qp = qp_i; in ff_hevc_hls_residual_coding()
H A Damfenc_hevc.c84 { "qp_i", "quantization parameter for I-frame", OFFSET(qp_i), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 51, VE },
171 ctx->qp_i !=-1 || ctx->qp_p != -1) { in amf_encode_init_hevc()
260 if (ctx->qp_i != -1) { in amf_encode_init_hevc()
261 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_HEVC_QP_I, ctx->qp_i); in amf_encode_init_hevc()
H A Damfenc_h264.c90 { "qp_i", "Quantization Parameter for I-Frame", OFFSET(qp_i), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 51, VE },
205 if (ctx->qp_i != -1 || ctx->qp_p != -1 || ctx->qp_b != -1) { in amf_encode_init_h264()
261 if (ctx->qp_i != -1) in amf_encode_init_h264()
262 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_QP_I, ctx->qp_i); in amf_encode_init_h264()
H A Damfenc.h98 int qp_i; member
H A Dhevc_filter.c52 int qp, qp_i, offset, idxt; in chroma_tc() local
60 qp_i = av_clip(qp_y + offset, 0, 57); in chroma_tc()
62 if (qp_i < 30) in chroma_tc()
63 qp = qp_i; in chroma_tc()
64 else if (qp_i > 43) in chroma_tc()
65 qp = qp_i - 6; in chroma_tc()
67 qp = qp_c[qp_i - 30]; in chroma_tc()
69 qp = av_clip(qp_i, 0, 51); in chroma_tc()

Completed in 7 milliseconds