Searched refs:ref_costs_single (Results 1 – 1 of 1) sorted by relevance
2205 unsigned int *ref_costs_single, in estimate_ref_frame_costs() argument2213 vpx_memset(ref_costs_single, 0, MAX_REF_FRAMES * sizeof(*ref_costs_single)); in estimate_ref_frame_costs()2227 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs()2237 ref_costs_single[LAST_FRAME] = ref_costs_single[GOLDEN_FRAME] = in estimate_ref_frame_costs()2238 ref_costs_single[ALTREF_FRAME] = base_cost; in estimate_ref_frame_costs()2239 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs()2240 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()2241 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs()2242 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs()2243 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs()[all …]