Searched refs:qp_i (Results 1 – 11 of 11) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | hevc_cabac.c | 1101 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()
|
D | amfenc_hevc.c | 83 …{ "qp_i", "quantization parameter for I-frame", OFFSET(qp_i), AV_OPT_TYPE… 170 ctx->qp_i !=-1 || ctx->qp_p != -1) { in amf_encode_init_hevc() 259 if (ctx->qp_i != -1) { in amf_encode_init_hevc() 260 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_HEVC_QP_I, ctx->qp_i); in amf_encode_init_hevc()
|
D | amfenc_h264.c | 89 …{ "qp_i", "Quantization Parameter for I-Frame", OFFSET(qp_i), AV_OPT_TYP… 204 if (ctx->qp_i != -1 || ctx->qp_p != -1 || ctx->qp_b != -1) { in amf_encode_init_h264() 260 if (ctx->qp_i != -1) in amf_encode_init_h264() 261 AMF_ASSIGN_PROPERTY_INT64(res, ctx->encoder, AMF_VIDEO_ENCODER_QP_I, ctx->qp_i); in amf_encode_init_h264()
|
D | amfenc.h | 98 int qp_i; member
|
D | hevc_filter.c | 54 int qp, qp_i, offset, idxt; in chroma_tc() local 62 qp_i = av_clip(qp_y + offset, 0, 57); in chroma_tc() 64 if (qp_i < 30) in chroma_tc() 65 qp = qp_i; in chroma_tc() 66 else if (qp_i > 43) in chroma_tc() 67 qp = qp_i - 6; in chroma_tc() 69 qp = qp_c[qp_i - 30]; in chroma_tc() 71 qp = av_clip(qp_i, 0, 51); in chroma_tc()
|
/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/ |
D | gstmfh265enc.cpp | 163 guint qp_i; member 436 self->qp_i = DEFAULT_QP_I; in gst_mf_h265_enc_init() 490 g_value_set_uint (value, self->qp_i); in gst_mf_h265_enc_get_property() 560 self->qp_i = g_value_get_uint (value); in gst_mf_h265_enc_set_property() 747 (guint64) self->qp_i | (guint64) self->qp_p << 16 | in gst_mf_h265_enc_set_option()
|
D | gstmfh264enc.cpp | 217 guint qp_i; member 553 self->qp_i = DEFAULT_QP_I; in gst_mf_h264_enc_init() 632 g_value_set_uint (value, self->qp_i); in gst_mf_h264_enc_get_property() 717 self->qp_i = g_value_get_uint (value); in gst_mf_h264_enc_set_property() 1008 (guint64) self->qp_i | (guint64) self->qp_p << 16 | in gst_mf_h264_enc_set_option()
|
/third_party/gstreamer/gstplugins_bad/ext/svthevcenc/ |
D | gstsvthevcenc.h | 109 guint qp_i; member
|
D | gstsvthevcenc.c | 643 encoder->qp_i = PROP_QP_I_DEFAULT; in gst_svthevc_enc_init() 820 param->qp = encoder->qp_i; in config_enc_params() 2107 encoder->qp_i = g_value_get_uint (value); in gst_svthevc_enc_set_property() 2202 g_value_set_uint (value, encoder->qp_i); in gst_svthevc_enc_get_property()
|
/third_party/gstreamer/gstplugins_bad/sys/nvcodec/ |
D | gstnvbaseenc.h | 82 gint qp_i; member
|
D | gstnvbaseenc.c | 1500 return qp->qp_i >= 0 && qp->qp_p >= 0 && qp->qp_b >= 0; in qp_has_values() 1536 rc_params->minQP.qpIntra = nvenc->qp_min_detail.qp_i; in gst_nv_base_enc_setup_rate_control() 1548 rc_params->maxQP.qpIntra = nvenc->qp_max_detail.qp_i; in gst_nv_base_enc_setup_rate_control() 1558 rc_params->constQP.qpIntra = nvenc->qp_const_detail.qp_i; in gst_nv_base_enc_setup_rate_control() 2711 nvenc->qp_min_detail.qp_i = g_value_get_int (value); in gst_nv_base_enc_set_property() 2720 nvenc->qp_max_detail.qp_i = g_value_get_int (value); in gst_nv_base_enc_set_property() 2729 nvenc->qp_const_detail.qp_i = g_value_get_int (value); in gst_nv_base_enc_set_property() 2804 g_value_set_int (value, nvenc->qp_min_detail.qp_i); in gst_nv_base_enc_get_property() 2813 g_value_set_int (value, nvenc->qp_max_detail.qp_i); in gst_nv_base_enc_get_property() 2822 g_value_set_int (value, nvenc->qp_const_detail.qp_i); in gst_nv_base_enc_get_property()
|