Searched refs:ref_frame_cost (Results 1 – 6 of 6) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 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() [all …]
|
D | block.h | 84 int ref_frame_cost[MAX_REF_FRAMES]; member
|
D | encodeframe.c | 39 extern void vp8_calc_ref_frame_costs(int *ref_frame_cost, 675 vp8_calc_ref_frame_costs(x->ref_frame_cost, in init_encode_frame_mb_context() 679 vp8_calc_ref_frame_costs(x->ref_frame_cost, in init_encode_frame_mb_context() 683 vp8_calc_ref_frame_costs(x->ref_frame_cost, in init_encode_frame_mb_context() 686 vp8_calc_ref_frame_costs(x->ref_frame_cost, in init_encode_frame_mb_context()
|
D | pickinter.c | 998 x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in vp8_pick_inter_mode() 1456 rate2 = x->ref_frame_cost[this_ref_frame] + in vp8_pick_inter_mode()
|
D | rdopt.c | 1861 x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in calculate_final_rd_costs() 1923 x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in update_best_mode() 2543 rd.rate2 = x->ref_frame_cost[this_ref_frame] + in vp8_rd_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1028 int ref_frame_cost[MAX_REF_FRAMES]) { in init_ref_frame_cost() 1033 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost() 1034 ref_frame_cost[LAST_FRAME] = ref_frame_cost[GOLDEN_FRAME] = in init_ref_frame_cost() 1035 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost() 1037 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost() 1038 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1039 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1040 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost() 1041 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost() 1131 int ref_frame_cost[MAX_REF_FRAMES]; in vp9_pick_inter_mode() local [all …]
|