Lines Matching refs:ps_frame_info
402 void ih264e_update_rc_mb_info(frame_info_t *ps_frame_info, void *pv_proc) in ih264e_update_rc_mb_info() argument
411 ps_frame_info->tot_mb_sad[mb_type] += ps_proc->i4_mb_distortion; in ih264e_update_rc_mb_info()
414 ps_frame_info->qp_sum[mb_type] += gau1_h264_to_mpeg2_qmap[ps_proc->u4_mb_qp]; in ih264e_update_rc_mb_info()
417 ps_frame_info->num_mbs[mb_type]++; in ih264e_update_rc_mb_info()
422 ps_frame_info->intra_mb_cost_sum += ps_proc->i4_mb_cost; in ih264e_update_rc_mb_info()
543 frame_info_t *ps_frame_info, in ih264e_rc_post_enc() argument
573 ai4_tot_mb_in_type[MB_TYPE_INTRA] = irc_fi_get_total_mb(ps_frame_info,MB_TYPE_INTRA); in ih264e_rc_post_enc()
574 ai4_tot_mb_in_type[MB_TYPE_INTER] = irc_fi_get_total_mb(ps_frame_info,MB_TYPE_INTER); in ih264e_rc_post_enc()
577 ai4_tot_mb_type_qp[MB_TYPE_INTRA] = irc_fi_get_total_mb_qp(ps_frame_info,MB_TYPE_INTRA); in ih264e_rc_post_enc()
578 ai4_tot_mb_type_qp[MB_TYPE_INTER] = irc_fi_get_total_mb_qp(ps_frame_info,MB_TYPE_INTER); in ih264e_rc_post_enc()
579 ai4_mb_type_sad[MB_TYPE_INTRA] = irc_fi_get_total_mb_sad(ps_frame_info,MB_TYPE_INTRA); in ih264e_rc_post_enc()
580 ai4_mb_type_sad[MB_TYPE_INTER] = irc_fi_get_total_mb_sad(ps_frame_info,MB_TYPE_INTER); in ih264e_rc_post_enc()
581 i4_intra_frm_cost = irc_fi_get_total_intra_mb_cost(ps_frame_info); in ih264e_rc_post_enc()
582 i4_avg_mb_activity = irc_fi_get_avg_activity(ps_frame_info); in ih264e_rc_post_enc()
583 i4_total_hdr_bits = irc_fi_get_total_header_bits(ps_frame_info); in ih264e_rc_post_enc()
584 …i4_total_texturebits = irc_fi_get_total_mb_texture_bits(ps_frame_info,MB_TYPE_INTR… in ih264e_rc_post_enc()
585 …i4_total_texturebits += irc_fi_get_total_mb_texture_bits(ps_frame_info,MB_TYPE_INT… in ih264e_rc_post_enc()
716 void ih264e_update_rc_bits_info(frame_info_t *ps_frame_info, void *pv_entropy) in ih264e_update_rc_bits_info() argument
720 ps_frame_info->mb_header_bits[MB_TYPE_INTRA] += ps_entropy->u4_header_bits[MB_TYPE_INTRA]; in ih264e_update_rc_bits_info()
722 ps_frame_info->mb_texture_bits[MB_TYPE_INTRA] += ps_entropy->u4_residue_bits[MB_TYPE_INTRA]; in ih264e_update_rc_bits_info()
724 ps_frame_info->mb_header_bits[MB_TYPE_INTER] += ps_entropy->u4_header_bits[MB_TYPE_INTER]; in ih264e_update_rc_bits_info()
726 ps_frame_info->mb_texture_bits[MB_TYPE_INTER] += ps_entropy->u4_residue_bits[MB_TYPE_INTER]; in ih264e_update_rc_bits_info()