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

  /external/webp/src/enc/
picture_psnr.c 68 int uv_w, uv_h; local
92 uv_h = (src->height + 1) >> 1;
98 ref->u, ref->uv_stride, uv_w, uv_h);
100 ref->v, ref->uv_stride, uv_w, uv_h);
106 result[1] = GetPSNR(sse[1] / (uv_w * uv_h));
107 result[2] = GetPSNR(sse[2] / (uv_w * uv_h));
111 int total_pixels = src->width * src->height + 2 * uv_w * uv_h;
125 uv_w, uv_h, &stats[1]);
128 uv_w, uv_h, &stats[2]);
iterator.c 137 const int uv_h = (h + 1) >> 1; local
140 ImportBlock(usrc, pic->uv_stride, it->yuv_in_ + U_OFF, uv_w, uv_h, 8);
141 ImportBlock(vsrc, pic->uv_stride, it->yuv_in_ + V_OFF, uv_w, uv_h, 8);
157 ImportLine(usrc - 1, pic->uv_stride, it->u_left_, uv_h, 8);
158 ImportLine(vsrc - 1, pic->uv_stride, it->v_left_, uv_h, 8);
206 const int uv_h = (h + 1) >> 1; local
207 ExportBlock(usrc, udst, pic->uv_stride, uv_w, uv_h);
208 ExportBlock(vsrc, vdst, pic->uv_stride, uv_w, uv_h);
picture_csp.c 424 const int uv_h = h >> 1; local
436 for (j = 0; j < uv_h; ++j) {
465 const int uv_h = h >> 1; local
474 fixed_t* const best_uv = SAFE_ALLOC(uv_w * 3, uv_h, fixed_t);
475 fixed_t* const target_uv = SAFE_ALLOC(uv_w * 3, uv_h, fixed_t);
    [all...]
  /external/webp/src/dec/
io.c 34 const int uv_h = (mb_h + 1) / 2; local
39 for (j = 0; j < uv_h; ++j) {

Completed in 631 milliseconds