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

  /external/libvpx/libvpx/vpx_scale/generic/
yv12config.c 45 int uv_width = aligned_width >> 1; local
75 ybf->uv_width = uv_width;
132 const int uv_width = aligned_width >> ss_x; local
178 ybf->uv_width = uv_width;
  /external/libvpx/libvpx/vpx_scale/
yv12config.h 33 int uv_width; member in struct:yv12_buffer_config
  /external/chromium_org/content/renderer/pepper/
pepper_video_capture_host.cc 168 int uv_width = info.width / 2; local
170 size_t size = info.width * info.height + 2 * uv_width * uv_height;
  /external/chromium_org/remoting/codec/
video_encoder_vp8.cc 72 const int uv_width = (image_->w + 1) / 2; local
74 const int uv_plane_size = uv_width * uv_height;
100 image_->stride[1] = uv_width;
101 image_->stride[2] = uv_width;
  /external/libvpx/libvpx/vp8/decoder/
threading.c 779 int uv_width; local
794 uv_width = width >>1;
806 CHECK_MEM_ERROR(pbi->mt_uabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
810 CHECK_MEM_ERROR(pbi->mt_vabove_row[i], vpx_memalign(16,sizeof(unsigned char) * (uv_width + VP8BORDERINPIXELS)));
  /external/webp/examples/
dwebp.c 256 const int uv_width = (width + 1) / 2; local
272 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
273 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1);
277 ok &= (fwrite(yuv->u + y * yuv->u_stride, uv_width, 1, fout) == 1);
280 ok &= (fwrite(yuv->v + y * yuv->v_stride, uv_width, 1, fout) == 1);
  /external/chromium_org/third_party/libwebp/dec/
io.c 562 const int uv_width = (io->mb_w + 1) >> 1; local
563 p->memory = malloc(io->mb_w + 2 * uv_width);
569 p->tmp_v = p->tmp_u + uv_width;
vp8l.c 473 const int uv_width = width >> 1; local
475 for (i = 0; i < uv_width; ++i) {
    [all...]
  /external/webp/src/dec/
io.c 562 const int uv_width = (io->mb_w + 1) >> 1; local
563 p->memory = malloc(io->mb_w + 2 * uv_width);
569 p->tmp_v = p->tmp_u + uv_width;
vp8l.c 473 const int uv_width = width >> 1; local
475 for (i = 0; i < uv_width; ++i) {
    [all...]
  /external/chromium_org/third_party/libwebp/enc/
picture.c 50 const int uv_width = HALVE(width); local
52 const int uv_stride = uv_width;
66 uv0_stride = uv_width;
88 uv_width < 0 || uv_height < 0) { // u/v param error
583 const int uv_width = HALVE(picture->width); local
586 memset(picture->u + y * picture->uv_stride, 128, uv_width);
587 memset(picture->v + y * picture->uv_stride, 128, uv_width);
    [all...]
  /external/webp/src/enc/
picture.c 50 const int uv_width = HALVE(width); local
52 const int uv_stride = uv_width;
66 uv0_stride = uv_width;
88 uv_width < 0 || uv_height < 0) { // u/v param error
583 const int uv_width = HALVE(picture->width); local
586 memset(picture->u + y * picture->uv_stride, 128, uv_width);
587 memset(picture->v + y * picture->uv_stride, 128, uv_width);
    [all...]

Completed in 369 milliseconds