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

  /external/libvpx/libvpx/vp9/encoder/
vp9_rd.c 424 static void model_rd_norm(int xsq_q10, int *r_q10, int *d_q10) {
425 const int tmp = (xsq_q10 >> 2) + 8;
429 const int a_q10 = ((xsq_q10 - xsq_iq_q10[xq]) << 10) >> (2 + k);
435 static void model_rd_norm_vec(int xsq_q10[MAX_MB_PLANE],
441 const int tmp = (xsq_q10[i] >> 2) + 8;
444 const int a_q10 = ((xsq_q10[i] - xsq_iq_q10[xq]) << 10) >> (2 + k);
469 const int xsq_q10 = (int)VPXMIN(xsq_q10_64, MAX_XSQ_Q10); local
470 model_rd_norm(xsq_q10, &r_q10, &d_q10);
483 int xsq_q10[MAX_MB_PLANE], d_q10[MAX_MB_PLANE], r_q10[MAX_MB_PLANE]; local
488 xsq_q10[i] = (int)VPXMIN(xsq_q10_64, MAX_XSQ_Q10)
    [all...]
  /external/libaom/libaom/av1/encoder/
rd.c 603 static void model_rd_norm(int xsq_q10, int *r_q10, int *d_q10) {
659 const int tmp = (xsq_q10 >> 2) + 8;
663 const int a_q10 = ((xsq_q10 - xsq_iq_q10[xq]) << 10) >> (2 + k);
686 const int xsq_q10 = (int)AOMMIN(xsq_q10_64, MAX_XSQ_Q10); local
687 model_rd_norm(xsq_q10, &r_q10, &d_q10);
    [all...]

Completed in 6350 milliseconds