/external/libvpx/libvpx/vpx_scale/generic/ |
yv12config.c | 48 int uv_width = width >> 1; local 70 ybf->uv_width = uv_width;
|
/external/libvpx/libvpx/vpx_scale/ |
yv12config.h | 47 int uv_width; member in struct:yv12_buffer_config
|
/external/webp/examples/ |
dwebp.c | 114 const int uv_width = (width + 1) / 2; local 123 ok &= (fwrite(u + y * uv_stride, uv_width, 1, fout) == 1); 124 ok &= (fwrite(v + y * uv_stride, uv_width, 1, fout) == 1);
|
/external/libvpx/libvpx/vp8/decoder/ |
threading.c | 787 int uv_width; local 802 uv_width = width >>1; 814 CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS))); 818 CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
|
/external/webp/src/dec/ |
io.c | 560 const int uv_width = (io->mb_w + 1) >> 1; local 561 p->memory = malloc(io->mb_w + 2 * uv_width); 567 p->tmp_v = p->tmp_u + uv_width;
|
vp8l.c | 471 const int uv_width = width >> 1; local 473 for (i = 0; i < uv_width; ++i) { [all...] |
/external/webp/src/enc/ |
picture.c | 48 const int uv_width = HALVE(width); local 50 const int uv_stride = uv_width; 64 uv0_stride = uv_width; 86 uv_width < 0 || uv_height < 0) { // u/v param error 582 const int uv_width = HALVE(picture->width); local 585 memset(picture->u + y * picture->uv_stride, 128, uv_width); 586 memset(picture->v + y * picture->uv_stride, 128, uv_width); [all...] |