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

/external/libvpx/libvpx/vpx/src/
H A Dvpx_image.c19 unsigned int d_w, unsigned int d_h,
93 w = d_w;
116 w = (d_w + align) & ~align;
147 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img;
155 unsigned int d_w, unsigned int d_h,
157 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
160 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, argument
165 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
173 img->d_w = w;
18 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
154 vpx_img_alloc(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, unsigned int align) argument
/external/libvpx/libvpx/vpx/
H A Dvpx_image.h99 unsigned int d_w; /**< Displayed image width */ member in struct:vpx_image
151 * \param[in] d_w Width of the image
161 unsigned int d_w, unsigned int d_h,
174 * \param[in] d_w Width of the image
183 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
/external/libvpx/libvpx/
H A Dvpxdec.c140 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y],
143 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
150 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w,
153 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w,
402 unsigned int d_w, unsigned int d_h,
416 case 'w': snprintf(q, q_len - 1, "%d", d_w); break;
490 return img->d_w != shifted->d_w || img->d_h != shifted->d_h ||
883 render_width = img->d_w;
895 if (img->d_w !
401 generate_filename(const char *pattern, char *out, size_t q_len, unsigned int d_w, unsigned int d_h, unsigned int frame_in) argument
[all...]

Completed in 259 milliseconds