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

  /external/libvpx/vp8/common/
setupintrarecon.c 24 vpx_memset(ybf->u_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
28 vpx_memset(ybf->v_buffer - 1 - ybf->uv_stride, 127, ybf->uv_width + 5);
asm_com_offsets.c 36 DEFINE(yv12_buffer_config_uv_width, offsetof(YV12_BUFFER_CONFIG, uv_width));
postproc.c 320 POSTPROC_INVOKE(rtcd, downacross)(source->u_buffer, post->u_buffer, source->uv_stride, post->uv_stride, source->uv_height, source->uv_width, ppl);
321 POSTPROC_INVOKE(rtcd, downacross)(source->v_buffer, post->v_buffer, source->uv_stride, post->uv_stride, source->uv_height, source->uv_width, ppl);
338 POSTPROC_INVOKE(rtcd, downacross)(source->u_buffer, post->u_buffer, source->uv_stride, post->uv_stride, source->uv_height, source->uv_width, ppl);
339 POSTPROC_INVOKE(rtcd, downacross)(source->v_buffer, post->v_buffer, source->uv_stride, post->uv_stride, source->uv_height, source->uv_width, ppl);
369 source->uv_width - 4, ppl);
376 source->uv_width - 4, ppl);
    [all...]
loopfilter.c 389 u_ptr += post->uv_stride * 8 - post->uv_width;
390 v_ptr += post->uv_stride * 8 - post->uv_width;
  /external/libvpx/vpx_scale/
yv12config.h 47 int uv_width; member in struct:__anon8534
  /external/libvpx/vpx_scale/generic/
yv12config.c 58 ybf->uv_width = (1 + width) / 2;
60 ybf->uv_stride = ybf->uv_width + border;
vpxscale.c 633 Scale2D((unsigned char *) src->u_buffer, src->uv_stride, src->uv_width, src->uv_height,
637 if (dw / 2 < (int)dst->uv_width)
639 duck_memset(dst->u_buffer + i * dst->uv_stride + dw / 2 - 1, dst->u_buffer[i*dst->uv_stride+dw/2-2], dst->uv_width - dw / 2 + 1);
643 duck_memcpy(dst->u_buffer + i * dst->uv_stride, dst->u_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
645 Scale2D((unsigned char *) src->v_buffer, src->uv_stride, src->uv_width, src->uv_height,
649 if (dw / 2 < (int)dst->uv_width)
651 duck_memset(dst->v_buffer + i * dst->uv_stride + dw / 2 - 1, dst->v_buffer[i*dst->uv_stride+dw/2-2], dst->uv_width - dw / 2 + 1);
655 duck_memcpy(dst->v_buffer + i * dst->uv_stride, dst->v_buffer + (dh / 2 - 2)*dst->uv_stride, dst->uv_width);
    [all...]
yv12extend.c 79 plane_width = ybf->uv_width;
244 vpx_memcpy(dest, source, src_ybc->uv_width);
254 vpx_memcpy(dest, source, src_ybc->uv_width);
bicubic_scaler.c 585 dst->uv_width = new_width / 2;
589 dst->uv_stride = dst->uv_width;
595 bicubic_scale(src->uv_width, src->uv_height, src->uv_stride,
599 bicubic_scale(src->uv_width, src->uv_height, src->uv_stride,
  /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/vp8/encoder/
ssim.c 224 source->uv_width, source->uv_height,
229 source->uv_width, source->uv_height,
396 source->uv_stride, dest->uv_stride, source->uv_width,
400 source->uv_stride, dest->uv_stride, source->uv_width,
onyx_if.c     [all...]
  /external/webp/src/enc/
picture.c 31 const int uv_width = (width + 1) / 2; local
33 const int uv_stride = uv_width;
47 uv0_stride = uv_width;
69 uv_width < 0 || uv_height < 0 || // check for u/v param error
479 const int uv_width = (picture->width + 1) >> 1; local
481 memset(picture->u + y * picture->uv_stride, 128, uv_width);
482 memset(picture->v + y * picture->uv_stride, 128, uv_width);
  /external/libvpx/vpx_scale/arm/neon/
vp8_vpxyv12_copyframe_func_neon.asm 97 mov r5, r5, lsr #1 ;src uv_width
  /external/libvpx/vp8/decoder/
threading.c 548 int uv_width; local
563 uv_width = width >>1;
575 CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_calloc(sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS), 1));
579 CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_calloc(sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS), 1));
    [all...]
  /external/webp/src/dec/
io.c 805 const int uv_width = (io->mb_w + 1) >> 1; local
806 p->memory = malloc(io->mb_w + 2 * uv_width);
812 p->tmp_v = p->tmp_u + uv_width;
    [all...]
  /external/libvpx/vp8/
vp8_dx_iface.c 560 yv12->uv_width = yv12->y_width / 2;
vp8_cx_iface.c 581 yv12->uv_width = (1 + yv12->y_width) / 2;
    [all...]

Completed in 1411 milliseconds