Lines Matching refs:hw
169 MppEncHwCfg *hw = &cfg->cfg->hw; in hal_h264e_vepu540c_init() local
171 hw->qp_delta_row_i = 1; in hal_h264e_vepu540c_init()
172 hw->qp_delta_row = 2; in hal_h264e_vepu540c_init()
173 hw->qbias_i = 683; in hal_h264e_vepu540c_init()
174 hw->qbias_p = 341; in hal_h264e_vepu540c_init()
175 hw->qbias_en = 0; in hal_h264e_vepu540c_init()
177 memcpy(hw->aq_thrd_i, h264_aq_tthd_default, sizeof(hw->aq_thrd_i)); in hal_h264e_vepu540c_init()
178 memcpy(hw->aq_thrd_p, h264_aq_tthd_default, sizeof(hw->aq_thrd_p)); in hal_h264e_vepu540c_init()
179 memcpy(hw->aq_step_i, h264_I_aq_step_default, sizeof(hw->aq_step_i)); in hal_h264e_vepu540c_init()
180 memcpy(hw->aq_step_p, h264_P_aq_step_default, sizeof(hw->aq_step_p)); in hal_h264e_vepu540c_init()
892 MppEncHwCfg *hw = &cfg->hw; in setup_vepu540c_rc_base() local
954 hw->qp_delta_row_i : hw->qp_delta_row; in setup_vepu540c_rc_base()
1286 static void setup_vepu540c_l2(HalVepu540cRegSet *regs, H264eSlice *slice, MppEncHwCfg *hw) in setup_vepu540c_l2() argument
1294 if (hw->qbias_en) { in setup_vepu540c_l2()
1295 regs->reg_s3.RDO_QUANT.quant_f_bias_I = hw->qbias_i; in setup_vepu540c_l2()
1296 regs->reg_s3.RDO_QUANT.quant_f_bias_P = hw->qbias_p; in setup_vepu540c_l2()
1430 regs->reg_rc_roi.aq_tthd[i] = hw->aq_thrd_i[i]; in setup_vepu540c_l2()
1431 regs->reg_rc_roi.aq_step[i] = hw->aq_step_i[i] & 0x3f; in setup_vepu540c_l2()
1435 regs->reg_rc_roi.aq_tthd[i] = hw->aq_thrd_p[i]; in setup_vepu540c_l2()
1436 regs->reg_rc_roi.aq_step[i] = hw->aq_step_p[i] & 0x3f; in setup_vepu540c_l2()
1498 setup_vepu540c_l2(ctx->regs_set, slice, &cfg->hw); in hal_h264e_vepu540c_gen_regs()