HomeSort by relevance Sort by last modified time
    Searched refs:best_rd (Results 1 - 13 of 13) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.h 165 static INLINE int rd_less_than_thresh(int64_t best_rd, int thresh,
167 return best_rd < ((int64_t)thresh * thresh_fact >> 5) || thresh == INT_MAX;
vp9_rdopt.h 30 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
vp9_rdopt.c 74 int64_t best_rd; member in struct:rdcost_block_args
547 if (args->this_rd + rd > args->best_rd) {
567 if (args->this_rd > args->best_rd) {
586 args.best_rd = ref_best_rd;
650 int64_t best_rd = INT64_MAX; local
711 if (rd[n][1] < best_rd) {
713 best_rd = rd[n][1];
774 int64_t best_rd = rd_thresh; local
840 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
860 if (RDCOST(x->rdmult, x->rddiv, ratey, distortion) >= best_rd)
1187 int64_t best_rd = INT64_MAX, this_rd; local
1782 int64_t best_rd = INT64_MAX; local
2418 int64_t rd, tmp_rd, best_rd = INT64_MAX; local
2969 int64_t best_rd = best_rd_so_far; local
3744 int64_t best_rd = best_rd_so_far; local
    [all...]
vp9_encodeframe.c     [all...]
vp9_pickmode.c 1689 int64_t best_rd = INT64_MAX; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_pickmode.c 219 int64_t best_rd = INT64_MAX; local
295 if (best_rd < ((int64_t)rd_threshes[mode_idx[this_mode]] *
329 if (this_rd < best_rd) {
330 best_rd = this_rd;
346 if (best_rd > inter_mode_thresh) {
358 if (this_rd + intra_mode_cost < best_rd) {
359 best_rd = this_rd;
vp9_rdopt.c 78 int64_t best_rd; member in struct:rdcost_block_args
693 if (args->this_rd > args->best_rd) {
748 args.best_rd = ref_best_rd;
810 int64_t best_rd = INT64_MAX; local
837 if (rd[n][1] < best_rd) {
839 best_rd = rd[n][1];
894 int64_t best_rd = INT64_MAX; local
1051 int64_t best_rd = rd_thresh; local
1363 int64_t best_rd = INT64_MAX, this_rd; local
1758 int64_t best_rd = INT64_MAX; local
2717 int64_t rd, best_rd = INT64_MAX; local
3142 int64_t best_rd = best_rd_so_far; local
3771 int64_t best_rd = best_rd_so_far; local
    [all...]
vp9_rdopt.h 57 PICK_MODE_CONTEXT *ctx, int64_t best_rd);
vp9_encodeframe.c     [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
pickinter.c 147 int best_rd = INT_MAX; local
166 if (this_rd < best_rd)
170 best_rd = this_rd;
177 return best_rd;
585 int best_rd = INT_MAX; local
708 if (best_rd <= x->rd_threshes[mode_index])
    [all...]
rdopt.c 643 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
802 if (this_rd < best_rd)
805 best_rd = this_rd
882 int best_rd = INT_MAX; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
rdopt.c 644 int best_rd = INT_MAX; local
686 if (this_rd < best_rd)
691 best_rd = this_rd;
703 return best_rd;
707 int *rate_y, int *Distortion, int best_rd)
756 if(total_rd >= (int64_t)best_rd)
760 if(total_rd >= (int64_t)best_rd)
780 int best_rd = INT_MAX; local
802 if (this_rd < best_rd)
805 best_rd = this_rd
884 int best_rd = INT_MAX; local
    [all...]
pickinter.c 247 int best_rd = INT_MAX; local
266 if (this_rd < best_rd)
270 best_rd = this_rd;
277 return best_rd;
693 int best_rd = INT_MAX; local
918 if (best_rd <= x->rd_threshes[mode_index])
    [all...]

Completed in 1134 milliseconds