HomeSort by relevance Sort by last modified time
    Searched defs:uv_stride (Results 1 - 9 of 9) sorted by null

  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 51 * uv_stride == y_stride/2, so enforce this here. */
52 int uv_stride = y_stride >> 1; local
53 int uvplane_size = (uv_height + border) * uv_stride;
72 ybf->uv_stride = uv_stride;
83 ybf->u_buffer = ybf->buffer_alloc + yplane_size + (border / 2 * uv_stride) + border / 2;
84 ybf->v_buffer = ybf->buffer_alloc + yplane_size + uvplane_size + (border / 2 * uv_stride) + border / 2;
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 49 int uv_stride; member in struct:yv12_buffer_config
  /external/webp/examples/
dwebp.c 41 int width, height, stride, uv_stride; local
91 &u, &v, &stride, &uv_stride);
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/webp/src/dec/
buffer.c 86 int uv_stride = 0, a_stride = 0; local
94 uv_stride = (w + 1) / 2;
95 uv_size = (uint64_t)uv_stride * ((h + 1) / 2);
116 buf->u_stride = uv_stride;
119 buf->v_stride = uv_stride;
decode_vp8.h 58 int uv_stride; // row stride for chroma member in struct:VP8Io
  /external/webp/include/webp/
encode.h 282 int y_stride, uv_stride; // luma/chroma strides. member in struct:WebPPicture
  /external/webp/src/enc/
picture.c 50 const int uv_stride = uv_width; local
79 uv_size = (uint64_t)uv_stride * uv_height;
97 picture->uv_stride = uv_stride;
151 picture->y_stride = picture->uv_stride = 0;
240 CopyPlane(src->u, src->uv_stride,
241 dst->u, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
242 CopyPlane(src->v, src->uv_stride,
243 dst->v, dst->uv_stride, HALVE(dst->width), HALVE(dst->height));
291 dst->u = src->u + (top >> 1) * src->uv_stride + (left >> 1)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
rdopt.c 470 int uv_stride = x->block[16].src_stride; local
477 int pre_stride = x->e_mbd.pre.uv_stride;
499 mv_col & 7, mv_row & 7, upred_ptr, uv_stride, &sse2);
501 mv_col & 7, mv_row & 7, vpred_ptr, uv_stride, &sse1);
507 upred_ptr, uv_stride, &sse2);
509 vpred_ptr, uv_stride, &sse1);
841 x->src.u_buffer, x->src.v_buffer, x->src.uv_stride,
858 x->src.u_buffer, x->src.v_buffer, x->src.uv_stride,
889 xd->dst.u_buffer - xd->dst.uv_stride,
890 xd->dst.v_buffer - xd->dst.uv_stride,
    [all...]
  /hardware/samsung_slsi/exynos5/libcamera2/
ExynosCameraHWInterface2.cpp 4563 int uv_stride = ALIGN(previewCbW\/2, 16); local
    [all...]

Completed in 181 milliseconds