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

/external/libvpx/libvpx/vpx/src/
H A Dvpx_image.c49 unsigned int d_w,
137 w = (d_w + align) & ~align;
182 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h))
192 unsigned int d_w,
196 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
201 unsigned int d_w,
208 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
221 img->d_w = w;
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
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h106 unsigned int d_w; /**< Displayed image width */ member in struct:vpx_image
161 * \param[in] d_w Width of the image
172 unsigned int d_w,
186 * \param[in] d_w Width of the image
197 unsigned int d_w,
/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
319 d_w = in_width / gcd_w;
371 product_val += d_w;
414 phase_offset = (float)((i * d_w) % g_nw) / (float)g_nw;
444 g_b_scaler.l_w[i] = (i * d_w) / g_b_scaler.nw;
/external/libvpx/libvpx/
H A Dvpxdec.c637 unsigned int d_w, unsigned int d_h,
655 case 'w': snprintf(q, q_len - 1, "%d", d_w); break;
1094 img->d_w, img->d_h, frame_in);
1104 out_put(out, buf, img->d_w, do_md5);
1112 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
1120 out_put(out, buf, (1 + img->d_w) / 2, do_md5);
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 930 milliseconds