• Home
  • Raw
  • Download

Lines Matching refs:i4_frame_qp

220 WORD32 ihevce_rc_get_scaled_mpeg2_qp(WORD32 i4_frame_qp, rc_quant_t *ps_rc_quant_ctxt);
1428 WORD32 i4_frame_qp, i4_frame_qp_q6, i4_hevc_frame_qp = -1; in ihevce_rc_get_pre_enc_pic_quant() local
1495 i4_frame_qp = rc_get_bpp_based_scene_cut_qp( in ihevce_rc_get_pre_enc_pic_quant()
1504 i4_frame_qp << QSCALE_Q_FAC_3, ps_rc_ctxt->ps_rc_quant_ctxt); in ihevce_rc_get_pre_enc_pic_quant()
1624 WORD32 i, i4_frame_qp, i4_scd_qp; in ihevce_rc_cal_pre_enc_qp() local
1639 i4_frame_qp = in ihevce_rc_cal_pre_enc_qp()
1643 i4_frame_qp; in ihevce_rc_cal_pre_enc_qp()
1653 i4_frame_qp = ihevce_rc_get_pre_enc_pic_quant( in ihevce_rc_cal_pre_enc_qp()
1657 .ai4_quant[i + FIELD_OFFSET] = i4_frame_qp; in ihevce_rc_cal_pre_enc_qp()
1788 WORD32 scene_type, i4_is_scd = 0, i4_frame_qp, slice_type; in ihevce_rc_pre_enc_qp_query() local
1860 i4_frame_qp = ihevce_get_cur_frame_qp( in ihevce_rc_pre_enc_qp_query()
1868 return i4_frame_qp; in ihevce_rc_pre_enc_qp_query()
1896 i4_frame_qp = in ihevce_rc_pre_enc_qp_query()
1899 i4_frame_qp++; in ihevce_rc_pre_enc_qp_query()
1901 i4_frame_qp = i4_frame_qp + ps_rc_lap_out->i4_rc_temporal_lyr_id; in ihevce_rc_pre_enc_qp_query()
1906 i4_frame_qp = ps_rc_ctxt->i4_L0_frame_qp + ai4_offsets[rc_pic_type - 4]; in ihevce_rc_pre_enc_qp_query()
1908 i4_frame_qp = ps_rc_ctxt->i4_L0_frame_qp + ai4_offsets[rc_pic_type]; in ihevce_rc_pre_enc_qp_query()
1914 i4_frame_qp = ps_rc_ctxt->as_pre_enc_qp_queue[ps_rc_ctxt->i4_pre_enc_qp_read_index] in ihevce_rc_pre_enc_qp_query()
1918 i4_frame_qp = in ihevce_rc_pre_enc_qp_query()
1934 i4_frame_qp = ps_rc_ctxt->ai4_init_pre_enc_qp[rc_pic_type]; in ihevce_rc_pre_enc_qp_query()
1949 i4_frame_qp = CLIP3(i4_frame_qp, ps_rc_ctxt->i4_min_frame_qp, ps_rc_ctxt->i4_max_frame_qp); in ihevce_rc_pre_enc_qp_query()
1950 return i4_frame_qp; in ihevce_rc_pre_enc_qp_query()
2086 WORD32 i4_frame_qp, i4_frame_qp_q6, i4_hevc_frame_qp = -1, i4_deltaQP = 0; in ihevce_rc_get_pic_quant() local
2145 i4_frame_qp = ihevce_get_cur_frame_qp( in ihevce_rc_get_pic_quant()
2152 return i4_frame_qp; in ihevce_rc_get_pic_quant()
2883 i4_frame_qp = in ihevce_rc_get_pic_quant()
2892 f_percent_error = (float)(abs(i4_init_qscale - i4_frame_qp)) / i4_init_qscale; in ihevce_rc_get_pic_quant()
3036 i4_frame_qp = in ihevce_rc_get_pic_quant()
3319 WORD32 i4_frame_qp = 0, i4_I_frame_qp = 0; in ihevce_get_i_to_avg_ratio() local
3353 i4_frame_qp = ps_cur_rc_lap_out->i4_L1_qp; in ihevce_get_i_to_avg_ratio()
3358 i4_frame_qp = ps_cur_rc_lap_out->i4_L0_qp; in ihevce_get_i_to_avg_ratio()
3378 i4_temp_frame_qp = i4_frame_qp + ai4_lambda_offsets[curr_rc_pic_type]; in ihevce_get_i_to_avg_ratio()
3383 i4_frame_qp + ai4_lambda_offsets[ps_cur_rc_lap_out->i4_rc_temporal_lyr_id + 1]; in ihevce_get_i_to_avg_ratio()
3662 WORD32 ihevce_rc_get_scaled_mpeg2_qp(WORD32 i4_frame_qp, rc_quant_t *ps_rc_quant_ctxt) in ihevce_rc_get_scaled_mpeg2_qp() argument
3666 if(i4_frame_qp > ps_rc_quant_ctxt->i2_max_qp) in ihevce_rc_get_scaled_mpeg2_qp()
3668 i4_frame_qp = ps_rc_quant_ctxt->i2_max_qp; in ihevce_rc_get_scaled_mpeg2_qp()
3670 else if(i4_frame_qp < ps_rc_quant_ctxt->i2_min_qp) in ihevce_rc_get_scaled_mpeg2_qp()
3672 i4_frame_qp = ps_rc_quant_ctxt->i2_min_qp; in ihevce_rc_get_scaled_mpeg2_qp()
3675 i4_qscale = (ps_rc_quant_ctxt->pi4_qp_to_qscale[i4_frame_qp + ps_rc_quant_ctxt->i1_qp_offset] + in ihevce_rc_get_scaled_mpeg2_qp()
3695 WORD32 ihevce_rc_get_scaled_mpeg2_qp_q6(WORD32 i4_frame_qp, UWORD8 u1_bit_depth) in ihevce_rc_get_scaled_mpeg2_qp_q6() argument
3702 ASSERT(i4_frame_qp >= 0); in ihevce_rc_get_scaled_mpeg2_qp_q6()
3703 ASSERT(i4_frame_qp <= 51 + ((u1_bit_depth - 8) * 6)); in ihevce_rc_get_scaled_mpeg2_qp_q6()
3704 f_qp = (float)pow((float)2, ((float)(i4_frame_qp - 4) / 6)); in ihevce_rc_get_scaled_mpeg2_qp_q6()
3762 WORD32 ihevce_rc_get_scaled_hevce_qp_q3(WORD32 i4_frame_qp, UWORD8 u1_bit_depth) in ihevce_rc_get_scaled_hevce_qp_q3() argument
3767 if(i4_frame_qp == 0) in ihevce_rc_get_scaled_hevce_qp_q3()
3775 f_mpeg2_qp = (float)i4_frame_qp; in ihevce_rc_get_scaled_hevce_qp_q3()
5254 WORD32 i4_frame_qp = 0, i4_temp_frame_qp = 0; in ihevce_compute_temporal_complexity_reset_Kp_Kb() local
5290 i4_frame_qp = ps_cur_rc_lap_out_temporal_offset->i4_L1_qp; in ihevce_compute_temporal_complexity_reset_Kp_Kb()
5292 i4_frame_qp = ps_cur_rc_lap_out_temporal_offset->i4_L0_qp; in ihevce_compute_temporal_complexity_reset_Kp_Kb()
5304 i4_frame_qp + ps_cur_rc_lap_out_temporal_offset->i4_rc_temporal_lyr_id + 1; in ihevce_compute_temporal_complexity_reset_Kp_Kb()