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

  /external/libvpx/libvpx/vp8/common/arm/
reconintra_arm.c 21 int y_stride,
30 int y_stride = x->dst.y_stride; local
35 vp8_build_intra_predictors_mby_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
41 int y_stride,
50 int y_stride = x->dst.y_stride; local
55 vp8_build_intra_predictors_mby_s_neon_func(y_buffer, ypred_ptr, y_stride, mode, Up, Left);
  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 46 int y_stride = ((width + 2 * border) + 31) & ~31; local
47 int yplane_size = (height + 2 * border) * y_stride;
51 * uv_stride == y_stride/2, so enforce this here. */
52 int uv_stride = y_stride >> 1;
68 ybf->y_stride = y_stride;
82 ybf->y_buffer = ybf->buffer_alloc + (border * y_stride) + border;
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 44 int y_stride; member in struct:yv12_buffer_config
  /external/webp/src/dec/
decode_vp8.h 57 int y_stride; // row stride for luma member in struct:VP8Io
  /external/libyuv/files/source/
convert.cc 1517 int y_stride; member in struct:libyuv::I420Buffers
    [all...]
  /external/libvpx/libvpx/vp8/common/
postproc.c 320 vp8_mbpost_proc_across_ip(post->y_buffer, post->y_stride, post->y_height,
322 vp8_mbpost_proc_down(post->y_buffer, post->y_stride, post->y_height,
371 source->y_buffer + 16 * mbr * source->y_stride,
372 post->y_buffer + 16 * mbr * post->y_stride, source->y_stride,
373 post->y_stride, source->y_width, ylimits, 16);
414 source->y_buffer + 16 * mbr * source->y_stride,
415 source->y_buffer + 16 * mbr * source->y_stride,
416 source->y_stride, source->y_stride, source->y_width, limits, 16)
937 int y_stride = oci->post_proc_buffer.y_stride; local
1096 int y_stride = oci->post_proc_buffer.y_stride; local
1168 int y_stride = oci->post_proc_buffer.y_stride; local
    [all...]
  /external/webp/include/webp/
decode.h 183 int y_stride; // luma stride member in struct:WebPYUVABuffer
encode.h 282 int y_stride, uv_stride; // luma/chroma strides. member in struct:WebPPicture
  /external/libvpx/libvpx/vp8/encoder/
mcomp.c 192 #define PRE(r,c) (y + (((r)>>2) * y_stride + ((c)>>2) -(offset)))
196 #define DIST(r,c) vfp->svf( PRE(r,c), y_stride, SP(c),SP(r), z,b->src_stride,&sse)
228 int y_stride; local
230 int pre_stride = x->e_mbd.pre.y_stride;
245 y_stride = 32;
248 vfp->copymem(y0 - buf_c1 - pre_stride*buf_r1, pre_stride, xd->y_buf, y_stride, 16+buf_r1+buf_r2);
249 y = xd->y_buf + y_stride*buf_r1 +buf_c1;
252 y_stride = pre_stride;
255 offset = (bestmv->as_mv.row) * y_stride + bestmv->as_mv.col;
262 besterr = vfp->vf(y, y_stride, z, b->src_stride, sse1)
373 int y_stride; local
684 int y_stride; local
    [all...]
  /external/webp/src/enc/
picture.c 47 const int y_stride = width; local
78 y_size = (uint64_t)y_stride * height;
96 picture->y_stride = y_stride;
151 picture->y_stride = picture->uv_stride = 0;
238 CopyPlane(src->y, src->y_stride,
239 dst->y, dst->y_stride, dst->width, dst->height);
290 dst->y = src->y + top * src->y_stride + left;
293 dst->y_stride = src->y_stride;
    [all...]
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java 1489 int y_stride = (int) (Math.ceil( width \/ 16.) * 16); local
    [all...]

Completed in 943 milliseconds