/external/chromium_org/third_party/libwebp/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);
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/ |
vp8_cx_iface.c | 706 const int uv_h = (img->d_h + 1) / 2; local 717 yv12->uv_crop_height = uv_h; 719 yv12->uv_height = uv_h; [all...] |
vp8_dx_iface.c | 573 const int uv_h = (img->d_h + 1) / 2; local 584 yv12->uv_crop_height = uv_h; 586 yv12->uv_height = uv_h;
|
/external/chromium_org/third_party/libwebp/dec/ |
io.c | 34 const int uv_h = (mb_h + 1) / 2; local 39 for (j = 0; j < uv_h; ++j) {
|