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

  /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/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);
recon16x16mb_neon.asm 22 ; r3 int ystride,
77 mov r3, r3, lsr #1 ;uv_stride = ystride>>1
  /external/libvpx/vpx_scale/arm/nds/
yv12extend.c 194 int ystride, uv_stride;
202 ystride = src_ybc->y_stride;
205 yoffset = border * (ystride + 1);
215 mi_cpu_copy_fast (src_y, dst_y, ystride * (yheight + 2 * border));
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv_c.h 45 long YStride;
SDL_phyuv.c 212 overlay->hwdata->YStride = overlay->hwdata->channel->yplane1->pitch;
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.h 48 long YStride;
  /external/libvpx/vp8/common/
loopfilter.h 44 int ystride, int uv_stride, loop_filter_info *lfi, int simpler)
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/
CameraFormatsActivity.java 504 int yStride = (int)Math.ceil(w / 16.0) * 16;
505 int uvStride = (int)Math.ceil(yStride / 2 / 16.0) * 16;
506 int ySize = yStride * h;
602 int yStride = (int)Math.ceil(w / 16.0) * 16;
603 int uvStride = (int)Math.ceil(yStride/2/16.0) * 16;
604 int ySize = yStride * h;
612 int yIndex = yStride * y;
  /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));
  /hardware/ti/omap4xxx/camera/
AppCallbackNotifier.cpp 455 int &yStride,
461 yStride = ( width + 0xF ) & ~0xF;
462 uvStride = ( yStride / 2 + 0xF ) & ~0xF;
463 ySize = yStride * height;
617 int yStride, uvStride, ySize, uvSize, size;
618 alignYV12(width, height, yStride, uvStride, ySize, uvSize, size);
    [all...]
  /development/tools/emulator/opengl/system/gralloc/
gralloc.cpp 268 size_t yStride = (w*bpp + (align - 1)) & ~(align-1);
269 size_t uvStride = (yStride / 2 + (align - 1)) & ~(align-1);
271 ashmem_size += yStride * h + 2 * (uvHeight * uvStride);
272 stride = yStride / bpp;
  /frameworks/base/core/java/android/hardware/
Camera.java     [all...]

Completed in 870 milliseconds