Home
last modified time | relevance | path

Searched refs:best_rd (Results 1 – 6 of 6) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_pickmode.c219 int64_t best_rd = INT64_MAX; in vp9_pick_inter_mode() local
295 if (best_rd < ((int64_t)rd_threshes[mode_idx[this_mode]] * in vp9_pick_inter_mode()
329 if (this_rd < best_rd) { in vp9_pick_inter_mode()
330 best_rd = this_rd; in vp9_pick_inter_mode()
346 if (best_rd > inter_mode_thresh) { in vp9_pick_inter_mode()
358 if (this_rd + intra_mode_cost < best_rd) { in vp9_pick_inter_mode()
359 best_rd = this_rd; in vp9_pick_inter_mode()
Dvp9_rdopt.c78 int64_t best_rd; member
693 if (args->this_rd > args->best_rd) { in block_rd_txfm()
748 args.best_rd = ref_best_rd; in txfm_rd_in_plane()
810 int64_t best_rd = INT64_MAX; in choose_txfm_size_from_rd() local
837 if (rd[n][1] < best_rd) { in choose_txfm_size_from_rd()
839 best_rd = rd[n][1]; in choose_txfm_size_from_rd()
894 int64_t best_rd = INT64_MAX; in choose_txfm_size_from_modelrd() local
920 if (rd[n][1] < best_rd) { in choose_txfm_size_from_modelrd()
921 best_rd = rd[n][1]; in choose_txfm_size_from_modelrd()
1051 int64_t best_rd = rd_thresh; in rd_pick_intra4x4block() local
[all …]
Dvp9_encodeframe.c989 int64_t best_rd) { in rd_pick_sb_modes() argument
1079 best_rd); in rd_pick_sb_modes()
1083 totalrate, totaldist, bsize, ctx, best_rd); in rd_pick_sb_modes()
1086 totaldist, bsize, ctx, best_rd); in rd_pick_sb_modes()
2001 int64_t *dist, int do_recon, int64_t best_rd) { in rd_pick_partition() argument
2085 ctx, best_rd); in rd_pick_partition()
2092 if (sum_rd < best_rd) { in rd_pick_partition()
2098 best_rd = sum_rd; in rd_pick_partition()
2109 if (!x->e_mbd.lossless && best_rd < stop_thresh_rd) { in rd_pick_partition()
2132 for (i = 0; i < 4 && sum_rd < best_rd; ++i) { in rd_pick_partition()
[all …]
Dvp9_rdopt.h57 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dpickinter.c147 int best_rd = INT_MAX; in pick_intra4x4block() local
166 if (this_rd < best_rd) in pick_intra4x4block()
170 best_rd = this_rd; in pick_intra4x4block()
177 return best_rd; in pick_intra4x4block()
585 int best_rd = INT_MAX; in vp8_pick_inter_mode() local
708 if (best_rd <= x->rd_threshes[mode_index]) in vp8_pick_inter_mode()
1101 if (this_rd < best_rd || x->skip) in vp8_pick_inter_mode()
1109 best_rd = this_rd; in vp8_pick_inter_mode()
1208 if (this_rd < best_rd) in vp8_pick_inter_mode()
Drdopt.c643 int best_rd = INT_MAX; in rd_pick_intra4x4block() local
685 if (this_rd < best_rd) in rd_pick_intra4x4block()
690 best_rd = this_rd; in rd_pick_intra4x4block()
702 return best_rd; in rd_pick_intra4x4block()
706 int *rate_y, int *Distortion, int best_rd) in rd_pick_intra4x4mby_modes() argument
755 if(total_rd >= (int64_t)best_rd) in rd_pick_intra4x4mby_modes()
759 if(total_rd >= (int64_t)best_rd) in rd_pick_intra4x4mby_modes()
779 int best_rd = INT_MAX; in rd_pick_intra16x16mby_mode() local
802 if (this_rd < best_rd) in rd_pick_intra16x16mby_mode()
805 best_rd = this_rd; in rd_pick_intra16x16mby_mode()
[all …]