/external/libaom/av1/encoder/ |
D | intra_mode_search.h | 110 BLOCK_SIZE bsize, unsigned int ref_frame_cost, 176 BLOCK_SIZE bsize, unsigned int ref_frame_cost, 201 BLOCK_SIZE bsize, unsigned int ref_frame_cost,
|
D | interp_search.h | 93 int ref_frame_cost; member
|
D | av1_temporal_denoiser.h | 60 unsigned int *ref_frame_cost; member
|
D | intra_mode_search.c | 974 BLOCK_SIZE bsize, unsigned int ref_frame_cost, in av1_search_palette_mode() argument 1023 rate2 = rd_stats_y.rate + ref_frame_cost; in av1_search_palette_mode() 1067 BLOCK_SIZE bsize, unsigned int ref_frame_cost, in av1_search_palette_mode_luma() argument 1110 rd_stats_y.rate += ref_frame_cost; in av1_search_palette_mode_luma() 1114 ref_frame_cost + in av1_search_palette_mode_luma() 1248 BLOCK_SIZE bsize, unsigned int ref_frame_cost, in av1_handle_intra_y_mode() argument 1261 mode_costs->mbmode_cost[size_group_lookup[bsize]][mode] + ref_frame_cost; in av1_handle_intra_y_mode()
|
D | rdopt.c | 1931 size_t est_rd_rate = args->ref_frame_cost + args->single_comp_cost; in ref_mv_idx_early_breakout() 1976 rd_stats->rate += args->ref_frame_cost + args->single_comp_cost; in simple_translation_pred_rd() 2808 args->ref_frame_cost + args->single_comp_cost + ref_mv_cost; in handle_inter_mode() 5911 const int ref_frame_cost = comp_pred in av1_rd_pick_inter_mode() local 5925 args.ref_frame_cost = ref_frame_cost; in av1_rd_pick_inter_mode()
|
D | nonrd_pickmode.c | 1889 unsigned int ref_frame_cost[REF_FRAMES], 1893 ctx_den->ref_frame_cost = ref_frame_cost; 1940 this_rdc.rate += ctx_den->ref_frame_cost[LAST_FRAME];
|
/external/libvpx/vp8/encoder/ |
D | bitstream.c | 778 void vp8_calc_ref_frame_costs(int *ref_frame_cost, int prob_intra, in vp8_calc_ref_frame_costs() argument 786 ref_frame_cost[INTRA_FRAME] = vp8_cost_zero(prob_intra); in vp8_calc_ref_frame_costs() 787 ref_frame_cost[LAST_FRAME] = in vp8_calc_ref_frame_costs() 789 ref_frame_cost[GOLDEN_FRAME] = vp8_cost_one(prob_intra) + in vp8_calc_ref_frame_costs() 792 ref_frame_cost[ALTREF_FRAME] = vp8_cost_one(prob_intra) + in vp8_calc_ref_frame_costs() 805 int ref_frame_cost[MAX_REF_FRAMES]; in vp8_estimate_entropy_savings() local 819 vp8_calc_ref_frame_costs(ref_frame_cost, new_intra, new_last, new_garf); in vp8_estimate_entropy_savings() 821 newtotal = rfct[INTRA_FRAME] * ref_frame_cost[INTRA_FRAME] + in vp8_estimate_entropy_savings() 822 rfct[LAST_FRAME] * ref_frame_cost[LAST_FRAME] + in vp8_estimate_entropy_savings() 823 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 | 616 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 255, in init_encode_frame_mb_context() 620 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 1, 255); in init_encode_frame_mb_context() 623 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, 1, 1); in init_encode_frame_mb_context() 625 vp8_calc_ref_frame_costs(x->ref_frame_cost, cpi->prob_intra_coded, in init_encode_frame_mb_context()
|
D | pickinter.c | 846 frame_cost = x->ref_frame_cost[x->e_mbd.mode_info_context->mbmi.ref_frame]; in vp8_pick_inter_mode() 1252 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() 2298 x->ref_frame_cost[this_ref_frame] + vp8_cost_mv_ref(ZEROMV, mdcounts); in vp8_rd_pick_inter_mode()
|
/external/libvpx/vp9/encoder/ |
D | vp9_pickmode.c | 1216 int ref_frame_cost[MAX_REF_FRAMES]) { in init_ref_frame_cost() 1221 ref_frame_cost[INTRA_FRAME] = vp9_cost_bit(intra_inter_p, 0); in init_ref_frame_cost() 1222 ref_frame_cost[LAST_FRAME] = ref_frame_cost[GOLDEN_FRAME] = in init_ref_frame_cost() 1223 ref_frame_cost[ALTREF_FRAME] = vp9_cost_bit(intra_inter_p, 1); in init_ref_frame_cost() 1225 ref_frame_cost[LAST_FRAME] += vp9_cost_bit(ref_single_p1, 0); in init_ref_frame_cost() 1226 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1227 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p1, 1); in init_ref_frame_cost() 1228 ref_frame_cost[GOLDEN_FRAME] += vp9_cost_bit(ref_single_p2, 0); in init_ref_frame_cost() 1229 ref_frame_cost[ALTREF_FRAME] += vp9_cost_bit(ref_single_p2, 1); in init_ref_frame_cost() 1360 int ref_frame_cost[MAX_REF_FRAMES], in vp9_pickmode_ctx_den_update() [all …]
|
D | vp9_denoiser.h | 60 int *ref_frame_cost; member
|