Searched refs:rfct (Results 1 – 2 of 2) sorted by relevance
495 const int *const rfct = cpi->mb.count_mb_ref_frame_usage; in vp8_convert_rfct_to_prob() local496 const int rf_intra = rfct[INTRA_FRAME]; in vp8_convert_rfct_to_prob()497 const int rf_inter = rfct[LAST_FRAME] + rfct[GOLDEN_FRAME] + rfct[ALTREF_FRAME]; in vp8_convert_rfct_to_prob()503 cpi->prob_last_coded = rf_inter ? (rfct[LAST_FRAME] * 255) / rf_inter : 128; in vp8_convert_rfct_to_prob()508 cpi->prob_gf_coded = (rfct[GOLDEN_FRAME] + rfct[ALTREF_FRAME]) in vp8_convert_rfct_to_prob()509 ? (rfct[GOLDEN_FRAME] * 255) / (rfct[GOLDEN_FRAME] + rfct[ALTREF_FRAME]) : 128; in vp8_convert_rfct_to_prob()1004 const int *const rfct = cpi->mb.count_mb_ref_frame_usage; in vp8_estimate_entropy_savings() local1005 const int rf_intra = rfct[INTRA_FRAME]; in vp8_estimate_entropy_savings()1006 const int rf_inter = rfct[LAST_FRAME] + rfct[GOLDEN_FRAME] + rfct[ALTREF_FRAME]; in vp8_estimate_entropy_savings()1017 new_last = rf_inter ? (rfct[LAST_FRAME] * 255) / rf_inter : 128; in vp8_estimate_entropy_savings()[all …]
2920 const int *const rfct = cpi->mb.count_mb_ref_frame_usage; in update_rd_ref_frame_probs() local2921 const int rf_intra = rfct[INTRA_FRAME]; in update_rd_ref_frame_probs()2922 const int rf_inter = rfct[LAST_FRAME] + rfct[GOLDEN_FRAME] + rfct[ALTREF_FRAME]; in update_rd_ref_frame_probs()