Searched defs:this_rd (Results 1 - 3 of 3) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
H A Dpickinter.c156 int this_rd; local
163 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
165 if (this_rd < best_rd)
169 best_rd = this_rd;
489 int this_rd; local
506 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, *distortion2);
518 this_rd = ((int64_t)this_rd) * rd_adj / 100;
522 return this_rd;
702 int this_rd local
1187 int this_rd = 0; local
1254 int this_rd; local
[all...]
H A Drdopt.c668 int this_rd; local
686 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
688 if (this_rd < best_rd)
693 best_rd = this_rd;
783 int this_rd; local
802 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
804 if (this_rd < best_rd)
807 best_rd = this_rd;
889 int this_rd; local
914 this_rd
1166 int this_rd; local
1834 calculate_final_rd_costs(int this_rd, RATE_DISTORTION* rd, int* other_cost, int disable_skip, int uv_intra_tteob, int intra_rd_penalty, VP8_COMP *cpi, MACROBLOCK *x) argument
1914 update_best_mode(BEST_MODE* best_mode, int this_rd, RATE_DISTORTION* rd, int other_cost, MACROBLOCK *x) argument
2023 int this_rd = INT_MAX; local
2534 int this_rd = INT_MAX; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rdopt.c1038 int64_t this_rd; local
1105 this_rd = RDCOST(x->rdmult, x->rddiv, rate, distortion);
1107 if (this_rd < best_rd) {
1111 best_rd = this_rd;
1165 int64_t d = INT64_MAX, this_rd = INT64_MAX; local
1176 this_rd = rd_pick_intra4x4block(cpi, mb, i, &best_mode, bmode_costs,
1179 if (this_rd >= best_rd - total_rd)
1182 total_rd += this_rd;
1217 int64_t this_distortion, this_rd; local
1251 this_rd
1328 int64_t best_rd = INT64_MAX, this_rd; local
1369 int64_t this_rd; local
2640 int64_t this_rd = 0; local
3212 int64_t this_rd = INT64_MAX; local
[all...]

Completed in 92 milliseconds