Searched refs:ref_costs_single (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2202 unsigned int *ref_costs_single, in estimate_ref_frame_costs() argument 2208 memset(ref_costs_single, 0, MAX_REF_FRAMES * sizeof(*ref_costs_single)); in estimate_ref_frame_costs() 2222 ref_costs_single[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in estimate_ref_frame_costs() 2232 ref_costs_single[LAST_FRAME] = ref_costs_single[GOLDEN_FRAME] = in estimate_ref_frame_costs() 2233 ref_costs_single[ALTREF_FRAME] = base_cost; in estimate_ref_frame_costs() 2234 ref_costs_single[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in estimate_ref_frame_costs() 2235 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() 2236 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in estimate_ref_frame_costs() 2237 ref_costs_single[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in estimate_ref_frame_costs() 2238 ref_costs_single[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in estimate_ref_frame_costs() [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 6841 int segment_id, unsigned int *ref_costs_single, in estimate_ref_frame_costs() argument 6846 memset(ref_costs_single, 0, REF_FRAMES * sizeof(*ref_costs_single)); in estimate_ref_frame_costs() 6853 ref_costs_single[INTRA_FRAME] = x->intra_inter_cost[intra_inter_ctx][0]; in estimate_ref_frame_costs() 6857 ref_costs_single[i] = base_cost; in estimate_ref_frame_costs() 6869 ref_costs_single[LAST_FRAME] += x->single_ref_cost[ctx_p1][0][0]; in estimate_ref_frame_costs() 6870 ref_costs_single[LAST2_FRAME] += x->single_ref_cost[ctx_p1][0][0]; in estimate_ref_frame_costs() 6871 ref_costs_single[LAST3_FRAME] += x->single_ref_cost[ctx_p1][0][0]; in estimate_ref_frame_costs() 6872 ref_costs_single[GOLDEN_FRAME] += x->single_ref_cost[ctx_p1][0][0]; in estimate_ref_frame_costs() 6873 ref_costs_single[BWDREF_FRAME] += x->single_ref_cost[ctx_p1][0][1]; in estimate_ref_frame_costs() 6874 ref_costs_single[ALTREF2_FRAME] += x->single_ref_cost[ctx_p1][0][1]; in estimate_ref_frame_costs() [all …]
|