Home
last modified time | relevance | path

Searched refs:max_qp (Results 1 – 20 of 20) sorted by relevance

/third_party/gstreamer/gstplugins_bad/sys/mediafoundation/
Dgstmfh265enc.cpp162 guint max_qp; member
318 if (device_caps->max_qp) { in gst_mf_h265_enc_class_init()
435 self->max_qp = DEFAULT_MAX_QP; in gst_mf_h265_enc_init()
487 g_value_set_uint (value, self->max_qp); in gst_mf_h265_enc_get_property()
557 self->max_qp = g_value_get_uint (value); in gst_mf_h265_enc_set_property()
737 if (device_caps->max_qp) { in gst_mf_h265_enc_set_option()
739 &CODECAPI_AVEncVideoMaxQP, self->max_qp); in gst_mf_h265_enc_set_option()
Dgstmfh264enc.cpp216 guint max_qp; member
430 if (device_caps->max_qp) { in gst_mf_h264_enc_class_init()
552 self->max_qp = DEFAULT_MAX_QP; in gst_mf_h264_enc_init()
629 g_value_set_uint (value, self->max_qp); in gst_mf_h264_enc_get_property()
714 self->max_qp = g_value_get_uint (value); in gst_mf_h264_enc_set_property()
998 if (device_caps->max_qp) { in gst_mf_h264_enc_set_option()
1000 &CODECAPI_AVEncVideoMaxQP, self->max_qp); in gst_mf_h264_enc_set_option()
Dgstmfvideoenc.h70 gboolean max_qp; /* AVEncVideoMaxQP */ member
Dgstmfvideoenc.cpp1764 CHECK_DEVICE_CAPS (codec_api, CODECAPI_AVEncVideoMaxQP, max_qp); in gst_mf_video_enc_enum_internal()
/third_party/gstreamer/gstplugins_bad/sys/uvch264/
Dgstuvch264_src.c552 self->max_qp[QP_I_FRAME] = DEFAULT_MAX_QP; in gst_uvc_h264_src_init()
554 self->max_qp[QP_P_FRAME] = DEFAULT_MAX_QP; in gst_uvc_h264_src_init()
556 self->max_qp[QP_B_FRAME] = DEFAULT_MAX_QP; in gst_uvc_h264_src_init()
677 self->max_qp[QP_I_FRAME] = g_value_get_int (value); in gst_uvc_h264_src_set_property()
687 self->max_qp[QP_P_FRAME] = g_value_get_int (value); in gst_uvc_h264_src_set_property()
697 self->max_qp[QP_B_FRAME] = g_value_get_int (value); in gst_uvc_h264_src_set_property()
833 g_value_set_int (value, self->max_qp[QP_I_FRAME]); in gst_uvc_h264_src_get_property()
841 g_value_set_int (value, self->max_qp[QP_P_FRAME]); in gst_uvc_h264_src_get_property()
849 g_value_set_int (value, self->max_qp[QP_B_FRAME]); in gst_uvc_h264_src_get_property()
955 req.bMaxQp = self->max_qp[type]; in set_qp()
[all …]
Dgstuvch264_src.h146 gint8 max_qp[QP_FRAMES]; member
/third_party/ffmpeg/libavcodec/
Dlibxavs2.c45 int max_qp; member
106 xavs2_opt_set2("MaxQP", "%d", avctx->qmax >= 0 ? avctx->qmax : cae->max_qp); in xavs2_init()
266 …{ "max_qp" , "max qp for rate control" , OFFSET(max_qp) , AV_O…
Dh264_ps.c648 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8); in init_dequant8_coeff_table() local
661 for (q = 0; q < max_qp + 1; q++) { in init_dequant8_coeff_table()
675 const int max_qp = 51 + 6 * (sps->bit_depth_luma - 8); in init_dequant4_coeff_table() local
687 for (q = 0; q < max_qp + 1; q++) { in init_dequant4_coeff_table()
720 const int max_qp = 51 + 6 * (depth - 8); in build_qp_table() local
721 for (i = 0; i < max_qp + 1; i++) in build_qp_table()
723 ff_h264_chroma_qp[depth - 8][av_clip(i + index, 0, max_qp)]; in build_qp_table()
Dh264_cavlc.c1104 const int max_qp = 51 + 6 * (h->ps.sps->bit_depth_luma - 8); in ff_h264_decode_mb_cavlc() local
1110 if (((unsigned)sl->qscale) > max_qp){ in ff_h264_decode_mb_cavlc()
1111 if (sl->qscale < 0) sl->qscale += max_qp + 1; in ff_h264_decode_mb_cavlc()
1112 else sl->qscale -= max_qp+1; in ff_h264_decode_mb_cavlc()
1113 if (((unsigned)sl->qscale) > max_qp){ in ff_h264_decode_mb_cavlc()
1115 sl->qscale = max_qp; in ff_h264_decode_mb_cavlc()
Dh264_cabac.c2393 const int max_qp = 51 + 6*(sps->bit_depth_luma-8); in ff_h264_decode_mb_cabac() local
2398 if(val > 2*max_qp){ //prevent infinite loop in ff_h264_decode_mb_cabac()
2410 if (((unsigned)sl->qscale) > max_qp){ in ff_h264_decode_mb_cabac()
2411 if (sl->qscale < 0) sl->qscale += max_qp + 1; in ff_h264_decode_mb_cabac()
2412 else sl->qscale -= max_qp + 1; in ff_h264_decode_mb_cabac()
Dsvq3.c1112 const int max_qp = 51; in init_dequant4_coeff_table() local
1114 for (q = 0; q < max_qp + 1; q++) { in init_dequant4_coeff_table()
Dvaapi_encode.c1774 .max_qp = (avctx->qmax > 0 ? avctx->qmax : 0), in vaapi_encode_init_rate_control()
/third_party/gstreamer/gstplugins_bad/sys/msdk/
Dgstmsdkh265enc.h69 guint max_qp; member
Dgstmsdkh264enc.h76 guint max_qp; member
Dgstmsdkh264enc.c408 thiz->max_qp; in gst_msdkh264enc_configure()
609 thiz->max_qp = g_value_get_uint (value); in gst_msdkh264enc_set_property()
669 g_value_set_uint (value, thiz->max_qp); in gst_msdkh264enc_get_property()
828 thiz->max_qp = PROP_MAX_QP_DEFAULT; in gst_msdkh264enc_init()
Dgstmsdkh265enc.c490 h265enc->max_qp; in gst_msdkh265enc_configure()
717 thiz->max_qp = g_value_get_uint (value); in gst_msdkh265enc_set_property()
785 g_value_set_uint (value, thiz->max_qp); in gst_msdkh265enc_get_property()
980 thiz->max_qp = PROP_MAX_QP_DEFAULT; in gst_msdkh265enc_init()
/third_party/mesa3d/src/gallium/drivers/radeon/
Dradeon_vce.h86 uint32_t max_qp; member
Dradeon_vce_52.c49 enc->enc_pic.rc.max_qp = 51; in get_rate_control_param()
442 RVCE_CS(enc->enc_pic.rc.max_qp); in rate_control()
/third_party/mesa3d/src/gallium/drivers/r600/
Dradeon_vce.h86 uint32_t max_qp; member
/third_party/ffmpeg/doc/
Dencoders.texi2767 @item max_qp