Lines Matching refs:ref_frame_cost
978 void vp8_calc_ref_frame_costs(int *ref_frame_cost, in vp8_calc_ref_frame_costs() argument
990 ref_frame_cost[INTRA_FRAME] = vp8_cost_zero(prob_intra); in vp8_calc_ref_frame_costs()
991 ref_frame_cost[LAST_FRAME] = vp8_cost_one(prob_intra) in vp8_calc_ref_frame_costs()
993 ref_frame_cost[GOLDEN_FRAME] = vp8_cost_one(prob_intra) in vp8_calc_ref_frame_costs()
996 ref_frame_cost[ALTREF_FRAME] = vp8_cost_one(prob_intra) in vp8_calc_ref_frame_costs()
1010 int ref_frame_cost[MAX_REF_FRAMES]; in vp8_estimate_entropy_savings() local
1025 vp8_calc_ref_frame_costs(ref_frame_cost,new_intra,new_last,new_garf); in vp8_estimate_entropy_savings()
1028 rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings()
1029 rfct[LAST_FRAME] * ref_frame_cost[LAST_FRAME] + in vp8_estimate_entropy_savings()
1030 rfct[GOLDEN_FRAME] * ref_frame_cost[GOLDEN_FRAME] + in vp8_estimate_entropy_savings()
1031 rfct[ALTREF_FRAME] * ref_frame_cost[ALTREF_FRAME]; in vp8_estimate_entropy_savings()
1035 vp8_calc_ref_frame_costs(ref_frame_cost,cpi->prob_intra_coded, in vp8_estimate_entropy_savings()
1039 rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings()
1040 rfct[LAST_FRAME] * ref_frame_cost[LAST_FRAME] + in vp8_estimate_entropy_savings()
1041 rfct[GOLDEN_FRAME] * ref_frame_cost[GOLDEN_FRAME] + in vp8_estimate_entropy_savings()
1042 rfct[ALTREF_FRAME] * ref_frame_cost[ALTREF_FRAME]; in vp8_estimate_entropy_savings()