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

  /external/libvpx/vpx/src/
vpx_image.c 19 unsigned int d_h,
99 h = (d_h + align) & ~align;
141 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h))
152 unsigned int d_h,
155 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, NULL);
161 unsigned int d_h,
165 return img_alloc_helper(img, fmt, d_w, d_h, stride_align, img_data);
179 img->d_h = h;
237 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
240 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1
    [all...]
  /external/libvpx/vpx/
vpx_image.h 107 unsigned int d_h; /**< Displayed image height */ member in struct:vpx_image
162 * \param[in] d_h Height of the image
172 unsigned int d_h,
186 * \param[in] d_h Height of the image
197 unsigned int d_h,
  /frameworks/av/media/libstagefright/codecs/on2/dec/
SoftVPX.cpp 270 int32_t height = img->d_h;
290 for (size_t i = 0; i < img->d_h; ++i) {
298 for (size_t i = 0; i < img->d_h / 2; ++i) {
306 for (size_t i = 0; i < img->d_h / 2; ++i) {
  /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
339 d_h = in_height / gcd_h;
409 product_val += d_h;
444 phase_offset = (float)((i * d_h) % g_nh) / (float)g_nh;
477 g_b_scaler.l_h[i] = (i * d_h) / g_b_scaler.nh;
  /external/libvpx/
vpxdec.c 632 unsigned int d_w, unsigned int d_h,
651 case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
1060 img->d_w, img->d_h, frame_in);
1068 for (y = 0; y < img->d_h; y++)
1076 for (y = 0; y < (1 + img->d_h) / 2; y++)
1084 for (y = 0; y < (1 + img->d_h) / 2; y++)
    [all...]
vpxenc.c 302 int h = (plane ? (1 + img->d_h) / 2 : img->d_h);
    [all...]
y4minput.c 865 _img->h=_img->d_h=_y4m->pic_h;
  /external/libvpx/vp8/
vp8_cx_iface.c 241 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h))
580 yv12->y_height = img->d_h;
926 ctx->preview_img.d_h = sd.y_height;
    [all...]
vp8_dx_iface.c 559 yv12->y_height = img->d_h;

Completed in 159 milliseconds