Searched refs:ref_frame_cost (Results 1 – 9 of 9) sorted by relevance
/external/libvpx/libvpx/vp8/encoder/ |
D | bitstream.c | 777 void vp8_calc_ref_frame_costs(int *ref_frame_cost, int prob_intra, in vp8_calc_ref_frame_costs() argument 785 ref_frame_cost[INTRA_FRAME] = vp8_cost_zero(prob_intra); in vp8_calc_ref_frame_costs() 786 ref_frame_cost[LAST_FRAME] = in vp8_calc_ref_frame_costs() 788 ref_frame_cost[GOLDEN_FRAME] = vp8_cost_one(prob_intra) + in vp8_calc_ref_frame_costs() 791 ref_frame_cost[ALTREF_FRAME] = vp8_cost_one(prob_intra) + in vp8_calc_ref_frame_costs() 804 int ref_frame_cost[MAX_REF_FRAMES]; in vp8_estimate_entropy_savings() local 818 vp8_calc_ref_frame_costs(ref_frame_cost, new_intra, new_last, new_garf); in vp8_estimate_entropy_savings() 820 newtotal = rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings() 821 rfct[LAST_FRAME] * ref_frame_cost[LAST_FRAME] + in vp8_estimate_entropy_savings() 822 rfct[GOLDEN_FRAME] * ref_frame_cost[GOLDEN_FRAME] + in vp8_estimate_entropy_savings() [all …]
|
D | bitstream.h | 23 void vp8_calc_ref_frame_costs(int *ref_frame_cost, int prob_intra,
|
D | block.h | 78 int ref_frame_cost[MAX_REF_FRAMES]; member
|
D | encodeframe.c | 621 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 255, in init_encode_frame_mb_context() 625 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 1, 255); in init_encode_frame_mb_context() 628 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 1, 1); in init_encode_frame_mb_context() 630 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, in init_encode_frame_mb_context()
|
D | pickinter.c | 843 frame_cost = x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in vp8_pick_inter_mode() 1249 x->ref_frame_cost[this_ref_frame] + vp8_cost_mv_ref(ZEROMV, mdcounts); in vp8_pick_inter_mode()
|
D | rdopt.c | 1664 rd->rate2 += x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in calculate_final_rd_costs() 1718 other_cost += x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in update_best_mode() 2293 x->ref_frame_cost[this_ref_frame] + vp8_cost_mv_ref(ZEROMV, mdcounts); in vp8_rd_pick_inter_mode()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1172 int ref_frame_cost[MAX_REF_FRAMES]) { in init_ref_frame_cost() 1177 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost() 1178 ref_frame_cost[LAST_FRAME] = ref_frame_cost[GOLDEN_FRAME] = in init_ref_frame_cost() 1179 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost() 1181 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost() 1182 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1183 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1184 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost() 1185 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost() 1316 int ref_frame_cost[MAX_REF_FRAMES], in vp9_pickmode_ctx_den_update() [all …]
|
D | vp9_denoiser.h | 60 int *ref_frame_cost; member
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.c | 8029 int ref_frame_cost; member 10281 rd_stats->rate += args->ref_frame_cost + args->single_comp_cost; in handle_inter_mode() 12057 int ref_frame_cost, in handle_intra_mode() argument 12079 known_rate += ref_frame_cost; in handle_intra_mode() 12249 rd_stats->rate += ref_frame_cost; in handle_intra_mode() 12809 const int ref_frame_cost = comp_pred in av1_rd_pick_inter_mode_sb() local 12878 args.ref_frame_cost = ref_frame_cost; in av1_rd_pick_inter_mode_sb() 13097 const int ref_frame_cost = ref_costs_single[ref_frame]; in av1_rd_pick_inter_mode_sb() local 13099 &search_state, cpi, x, bsize, mi_row, mi_col, ref_frame_cost, ctx, 0, in av1_rd_pick_inter_mode_sb() 13371 const int ref_frame_cost = comp_pred in av1_nonrd_pick_inter_mode_sb() local [all …]
|