Searched refs:best_rd (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rd.h165 static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh, argument
167 return best_rd < ((int64_t)thresh * thresh_fact >> 5) || thresh == INT_MAX;
H A Dvp9_rdopt.h30 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
H A Dvp9_rdopt.c73 int64_t best_rd; member in struct:rdcost_block_args
524 if (args->this_rd + rd > args->best_rd) {
544 if (args->this_rd > args->best_rd) {
563 args.best_rd = ref_best_rd;
627 int64_t best_rd = INT64_MAX; local
682 if (rd[n][1] < best_rd) {
684 best_rd = rd[n][1];
745 int64_t best_rd = rd_thresh; local
811 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
831 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
965 rd_pick_intra_sub_8x8_y_mode(VP9_COMP *cpi, MACROBLOCK *mb, int *rate, int *rate_y, int64_t *distortion, int64_t best_rd) argument
1033 rd_pick_intra_sby_mode(VP9_COMP *cpi, MACROBLOCK *x, int *rate, int *rate_tokenonly, int64_t *distortion, int *skippable, BLOCK_SIZE bsize, int64_t best_rd) argument
1153 int64_t best_rd = INT64_MAX, this_rd; local
1687 rd_pick_best_sub8x8_mode(VP9_COMP *cpi, MACROBLOCK *x, int_mv *best_ref_mv, int_mv *second_best_ref_mv, int64_t best_rd, int *returntotrate, int *returnyrate, int64_t *returndistortion, int *skippable, int64_t *psse, int mvthresh, int_mv seg_mvs[4][MAX_REF_FRAMES], BEST_SEG_INFO *bsi_buf, int filter_idx, int mi_row, int mi_col) argument
1751 int64_t best_rd = INT64_MAX; local
2385 int64_t rd, tmp_rd, best_rd = INT64_MAX; local
2728 vp9_rd_pick_intra_mode_sb(VP9_COMP *cpi, MACROBLOCK *x, RD_COST *rd_cost, BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx, int64_t best_rd) argument
2936 int64_t best_rd = best_rd_so_far; local
3711 int64_t best_rd = best_rd_so_far; local
[all...]
H A Dvp9_encodeframe.c1167 int64_t best_rd) {
1244 vp9_rd_pick_intra_mode_sb(cpi, x, rd_cost, bsize, ctx, best_rd);
1249 ctx, best_rd);
1252 rd_cost, bsize, ctx, best_rd);
1255 rd_cost, bsize, ctx, best_rd);
2344 int64_t best_rd, PC_TREE *pc_tree) {
2387 best_rdc.rdcost = best_rd;
2730 // warning related to the fact that best_rd isn't used after this
2733 (void) best_rd;
3034 int do_recon, int64_t best_rd,
1162 rd_pick_sb_modes(VP9_COMP *cpi, TileDataEnc *tile_data, MACROBLOCK *const x, int mi_row, int mi_col, RD_COST *rd_cost, BLOCK_SIZE bsize, PICK_MODE_CONTEXT *ctx, int64_t best_rd) argument
2340 rd_pick_partition(VP9_COMP *cpi, ThreadData *td, TileDataEnc *tile_data, TOKENEXTRA **tp, int mi_row, int mi_col, BLOCK_SIZE bsize, RD_COST *rd_cost, int64_t best_rd, PC_TREE *pc_tree) argument
3030 nonrd_pick_partition(VP9_COMP *cpi, ThreadData *td, TileDataEnc *tile_data, TOKENEXTRA **tp, int mi_row, int mi_col, BLOCK_SIZE bsize, RD_COST *rd_cost, int do_recon, int64_t best_rd, PC_TREE *pc_tree) argument
[all...]
H A Dvp9_pickmode.c1668 int64_t best_rd = INT64_MAX; local
1892 if (this_rd < best_rd) {
1893 best_rd = this_rd;
1916 rd_cost->rdcost = best_rd;
/external/libvpx/libvpx/vp8/encoder/
H A Drdopt.c643 int best_rd = INT_MAX; local
685 if (this_rd < best_rd)
690 best_rd = this_rd;
702 return best_rd;
706 int *rate_y, int *Distortion, int best_rd)
755 if(total_rd >= (int64_t)best_rd)
759 if(total_rd >= (int64_t)best_rd)
779 int best_rd = INT_MAX; local
801 if (this_rd < best_rd)
804 best_rd
705 rd_pick_intra4x4mby_modes(MACROBLOCK *mb, int *Rate, int *rate_y, int *Distortion, int best_rd) argument
883 int best_rd = INT_MAX; local
1387 vp8_rd_pick_best_mbsegmentation(VP8_COMP *cpi, MACROBLOCK *x, int_mv *best_ref_mv, int best_rd, int *mdcounts, int *returntotrate, int *returnyrate, int *returndistortion, int mvthresh) argument
[all...]
H A Dpickinter.c245 int best_rd = INT_MAX; local
264 if (this_rd < best_rd)
268 best_rd = this_rd;
275 return best_rd;
691 int best_rd = INT_MAX; local
907 if (best_rd <= x->rd_threshes[mode_index])
1314 if (this_rd < best_rd || x->skip)
1322 best_rd = this_rd;
1460 if (this_rd < best_rd)

Completed in 89 milliseconds