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

/external/libvpx/libvpx/vp8/encoder/
H A Dpickinter.c583 static int evaluate_inter_mode(unsigned int* sse, int rate2, int* distortion2, argument
595 *distortion2 = 0;
602 *distortion2 = vp8_get_inter_mbpred_error(x,
606 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, *distortion2);
697 int distortion2; local
978 distortion2 = 0;
1004 distortion2 = best_rd_sse;
1005 pick_intra4x4mby_modes(x, &rate, &distortion2);
1007 if (distortion2 == INT_MAX)
1014 distortion2
[all...]
H A Drdopt.c49 int distortion2; member in struct:rate_distortion_struct
1804 rd->distortion2 = sse + sse2;
1813 rd->distortion2);
1826 rd->distortion2 += distortion;
1832 rd->distortion2 += rd->distortion_uv;
1908 this_rd = RDCOST(x->rdmult, x->rddiv, rd->rate2, rd->distortion2);
1926 (rd->distortion2-rd->distortion_uv));
2042 rd.distortion2 = 0;
2159 rd.distortion2 += distortion;
2165 rd.distortion2
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rdopt.c3103 int64_t distortion2 = 0, distortion_y = 0, distortion_uv = 0; local
3302 distortion2 = distortion_y + distortion_uv;
3305 &rate2, &distortion2, &skippable,
3337 if (RDCOST(x->rdmult, x->rddiv, rate_y + rate_uv, distortion2) <
3344 distortion2 = total_sse;
3355 this_rd = RDCOST(x->rdmult, x->rddiv, rate2, distortion2);
3394 rd_cost->dist = distortion2;
3423 distortion2 * scale < qstep * qstep) {
3442 single_rd = RDCOST(x->rdmult, x->rddiv, single_rate, distortion2);
3443 hybrid_rd = RDCOST(x->rdmult, x->rddiv, hybrid_rate, distortion2);
3610 const int64_t distortion2 = 0; local
3780 int64_t distortion2 = 0, distortion_y = 0, distortion_uv = 0; local
[all...]

Completed in 31 milliseconds