Searched defs:d_h (Results 1 - 4 of 4) sorted by relevance

/external/libvpx/libvpx/vpx/src/
H A Dvpx_image.c50 unsigned int d_h,
139 h = (d_h + align) & ~align;
182 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h))
193 unsigned int d_h,
196 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
202 unsigned int d_h,
208 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
222 img->d_h = h;
280 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y];
283 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> im
47 img_alloc_helper(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int buf_align, unsigned int stride_align, unsigned char *img_data) argument
190 vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align) argument
199 vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int stride_align, unsigned char *img_data) argument
[all...]
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h107 unsigned int d_h; /**< Displayed image height */ member in struct:vpx_image
162 * \param[in] d_h Height of the image
173 unsigned int d_h,
187 * \param[in] d_h Height of the image
198 unsigned int d_h,
/external/libvpx/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c288 int gcd_w, gcd_h, gcd_h_uv, d_w, d_h, d_h_uv; local
322 d_h = in_height / gcd_h;
390 product_val += d_h;
422 phase_offset = (float)((i * d_h) % g_nh) / (float)g_nh;
452 g_b_scaler.l_h[i] = (i * d_h) / g_b_scaler.nh;
/external/libvpx/libvpx/
H A Dvpxdec.c637 unsigned int d_w, unsigned int d_h,
656 case 'h': snprintf(q, q_len - 1, "%d", d_h); break;
1094 img->d_w, img->d_h, frame_in);
1102 for (y = 0; y < img->d_h; y++)
1110 for (y = 0; y < (1 + img->d_h) / 2; y++)
1118 for (y = 0; y < (1 + img->d_h) / 2; y++)
636 generate_filename(const char *pattern, char *out, size_t q_len, unsigned int d_w, unsigned int d_h, unsigned int frame_in) argument

Completed in 323 milliseconds