Searched refs:ref_costs_comp (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 2203 unsigned int *ref_costs_comp, in estimate_ref_frame_costs() argument 2209 memset(ref_costs_comp, 0, MAX_REF_FRAMES * sizeof(*ref_costs_comp)); in estimate_ref_frame_costs() 2251 ref_costs_comp[LAST_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 0); in estimate_ref_frame_costs() 2252 ref_costs_comp[GOLDEN_FRAME] = base_cost + vp9_cost_bit(ref_comp_p, 1); in estimate_ref_frame_costs() 2254 ref_costs_comp[LAST_FRAME] = 512; in estimate_ref_frame_costs() 2255 ref_costs_comp[GOLDEN_FRAME] = 512; in estimate_ref_frame_costs() 3178 unsigned int ref_costs_single[MAX_REF_FRAMES], ref_costs_comp[MAX_REF_FRAMES]; in vp9_rd_pick_inter_mode_sb() local 3212 estimate_ref_frame_costs(cm, xd, segment_id, ref_costs_single, ref_costs_comp, in vp9_rd_pick_inter_mode_sb() 3555 rate2 += ref_costs_comp[ref_frame]; in vp9_rd_pick_inter_mode_sb() 3849 unsigned int ref_costs_single[MAX_REF_FRAMES], ref_costs_comp[MAX_REF_FRAMES]; in vp9_rd_pick_inter_mode_sb_seg_skip() local [all …]
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 6842 unsigned int (*ref_costs_comp)[REF_FRAMES]) { in estimate_ref_frame_costs() 6849 memset(ref_costs_comp[ref_frame], 0, in estimate_ref_frame_costs() 6850 REF_FRAMES * sizeof((*ref_costs_comp)[0])); in estimate_ref_frame_costs() 6949 ref_costs_comp[ref0][ref1] = in estimate_ref_frame_costs() 6958 ref_costs_comp[LAST_FRAME][LAST2_FRAME] = in estimate_ref_frame_costs() 6962 ref_costs_comp[LAST_FRAME][LAST3_FRAME] = in estimate_ref_frame_costs() 6967 ref_costs_comp[LAST_FRAME][GOLDEN_FRAME] = in estimate_ref_frame_costs() 6972 ref_costs_comp[BWDREF_FRAME][ALTREF_FRAME] = in estimate_ref_frame_costs() 6979 ref_costs_comp[ref0][ref1] = 512; in estimate_ref_frame_costs() 6981 ref_costs_comp[LAST_FRAME][LAST2_FRAME] = 512; in estimate_ref_frame_costs() [all …]
|