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

  /external/libvpx/vpx/
vpx_image.h 106 unsigned int d_w; /**< Displayed image width */ member in struct:vpx_image
161 * \param[in] d_w Width of the image
171 unsigned int d_w,
185 * \param[in] d_w Width of the image
196 unsigned int d_w,
  /external/libvpx/vpx/src/
vpx_image.c 18 unsigned int d_w,
97 w = (d_w + align) & ~align;
141 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h))
151 unsigned int d_w,
155 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, NULL);
160 unsigned int d_w,
165 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, img_data);
178 img->d_w = w;
  /frameworks/base/media/libstagefright/codecs/on2/dec/
VPXDecoder.cpp 216 int32_t width = img->d_w;
243 memcpy(dst, srcLine, img->d_w);
246 dst += img->d_w;
251 memcpy(dst, srcLine, img->d_w / 2);
254 dst += img->d_w / 2;
259 memcpy(dst, srcLine, img->d_w / 2);
262 dst += img->d_w / 2;
  /external/libvpx/
ivfdec.c 578 prefix, img->d_w, img->d_h, frame_in, sfx);
588 out_put(out, buf, img->d_w, do_md5);
596 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
604 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
ivfenc.c 262 int w = (plane ? (1 + img->d_w) / 2 : img->d_w);
    [all...]
y4minput.c 864 _img->w=_img->d_w=_y4m->pic_w;
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 305 int gcd_w, gcd_h, gcd_h_uv, d_w, d_h, d_h_uv; local
336 d_w = in_width / gcd_w;
389 product_val += d_w;
435 phase_offset = (float)((i * d_w) % g_nw) / (float)g_nw;
468 g_b_scaler.l_w[i] = (i * d_w) / g_b_scaler.nw;
  /external/libvpx/vp8/
vp8_dx_iface.c 563 yv12->y_width = img->d_w;
571 yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2;
vp8_cx_iface.c 224 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
544 yv12->y_width = img->d_w;
881 ctx->preview_img.d_w = ctx->cfg.g_w;
    [all...]

Completed in 224 milliseconds