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

  /external/libvpx/vp8/common/arm/neon/
recon_neon.c 16 extern void vp8_recon16x16mb_neon(unsigned char *pred_ptr, short *diff_ptr, unsigned char *dst_ptr, int ystride, unsigned char *udst_ptr, unsigned char *vdst_ptr);
25 int ystride = x->dst.y_stride; local
28 vp8_recon16x16mb_neon(pred_ptr, diff_ptr, dst_ptr, ystride, udst_ptr, vdst_ptr);
  /external/libvpx/vp8/encoder/arm/
picklpf_arm.c 28 int ystride; local
35 ystride = src_ybc->y_stride;
44 yoffset = ystride * ((yheight >> 5) * 16 - 8);
48 //vpx_memcpy (dst_y, src_y, ystride * (linestocopy +16));
49 vp8_memcpy_neon((unsigned char *)dst_y, (unsigned char *)src_y, (int)(ystride *(linestocopy + 16)));
  /external/libvpx/vp8/encoder/
picklpf.c 45 int ystride; local
52 ystride = src_ybc->y_stride;
61 yoffset = ystride * ((yheight >> 5) * 16 - 8);
65 vpx_memcpy(dst_y, src_y, ystride *(linestocopy + 16));

Completed in 64 milliseconds