Lines Matching refs:mppenc
94 GstMppEnc *mppenc = GST_MPP_ENC (encoder); in gst_mpp_h265_enc_set_property() local
134 mppenc->prop_dirty = TRUE; in gst_mpp_h265_enc_set_property()
183 GstMppEnc *mppenc = GST_MPP_ENC (encoder); in gst_mpp_h265_enc_apply_properties() local
185 if (G_LIKELY (!mppenc->prop_dirty)) in gst_mpp_h265_enc_apply_properties()
188 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_init", self->qp_init); in gst_mpp_h265_enc_apply_properties()
190 if (mppenc->rc_mode == MPP_ENC_RC_MODE_FIXQP) { in gst_mpp_h265_enc_apply_properties()
191 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_max", self->qp_init); in gst_mpp_h265_enc_apply_properties()
192 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_min", self->qp_init); in gst_mpp_h265_enc_apply_properties()
193 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_step", 0); in gst_mpp_h265_enc_apply_properties()
194 } else if (mppenc->rc_mode == MPP_ENC_RC_MODE_CBR) { in gst_mpp_h265_enc_apply_properties()
196 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_max", in gst_mpp_h265_enc_apply_properties()
198 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_min", in gst_mpp_h265_enc_apply_properties()
200 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_step", in gst_mpp_h265_enc_apply_properties()
202 } else if (mppenc->rc_mode == MPP_ENC_RC_MODE_VBR) { in gst_mpp_h265_enc_apply_properties()
203 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_max", in gst_mpp_h265_enc_apply_properties()
205 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_min", in gst_mpp_h265_enc_apply_properties()
207 mpp_enc_cfg_set_s32 (mppenc->mpp_cfg, "h265:qp_step", in gst_mpp_h265_enc_apply_properties()