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

1 2

  /external/libvpx/libvpx/test/
util.h 25 assert((img1->fmt == img2->fmt) && (img1->d_w == img2->d_w) &&
28 const unsigned int width_y = img1->d_w;
md5_helper.h 35 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift
36 : img->d_w) *
encode_test_driver.cc 29 cfg_.g_w = img->d_w;
78 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
79 cfg_.g_w = img->d_w;
130 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h);
134 const unsigned int width_y = img1->d_w;
143 const unsigned int width_uv = (img1->d_w + 1) >> 1;
active_map_refresh_test.cc 26 int c_top = std::min(c0 + 16, static_cast<int>(current.d_w));
85 const int width = static_cast<int>(current->d_w);
y4m_test.cc 67 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift
68 : img->d_w);
96 ASSERT_EQ(img()->d_w, kWidth);
decode_svc_test.cc 39 ASSERT_EQ(img.d_w, width_);
  /external/libaom/libaom/aom/src/
aom_image.c 30 aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h,
93 w = align_image_dimension(d_w, xcs, size_align);
142 if (!aom_img_set_rect(img, 0, 0, d_w, d_h, border)) return img;
150 unsigned int d_w, unsigned int d_h,
152 return img_alloc_helper(img, fmt, d_w, d_h, align, align, 1, NULL, 0);
155 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w,
160 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, 1, img_data, 0);
164 unsigned int d_w, unsigned int d_h,
168 return img_alloc_helper(img, fmt, d_w, d_h, align, align, size_align, NULL,
177 img->d_w = w
    [all...]
  /external/libaom/libaom/test/
util.h 26 assert((img1->fmt == img2->fmt) && (img1->d_w == img2->d_w) &&
29 const unsigned int width_y = img1->d_w;
md5_helper.h 36 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift
37 : img->d_w) *
encode_test_driver.cc 32 cfg_.g_w = img->d_w;
64 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
65 cfg_.g_w = img->d_w;
136 img1->mc != img2->mc || img1->d_w != img2->d_w ||
  /external/libvpx/libvpx/vpx/
vpx_image.h 82 unsigned int d_w; /**< Displayed image width */ member in struct:vpx_image
134 * \param[in] d_w Width of the image
144 unsigned int d_w, unsigned int d_h,
157 * \param[in] d_w Width of the image
166 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
  /external/libvpx/libvpx/
tools_common.c 207 return (img->d_w + 1) >> img->x_chroma_shift;
209 return img->d_w;
276 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
290 int w = src->d_w;
312 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
326 int w = src->d_w;
354 if (dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w ||
    [all...]
vpxdec.c 161 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y],
164 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
171 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w,
174 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w,
424 unsigned int d_w, unsigned int d_h,
438 case 'w': snprintf(q, q_len - 1, "%d", d_w); break;
512 return img->d_w != shifted->d_w || img->d_h != shifted->d_h ||
923 render_width = img->d_w;
935 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h)
    [all...]
  /external/libaom/libaom/aom/
aom_image.h 156 unsigned int d_w; /**< Displayed image width */ member in struct:aom_image
211 * \param[in] d_w Width of the image
221 unsigned int d_w, unsigned int d_h,
234 * \param[in] d_w Width of the image
243 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w,
257 * \param[in] d_w Width of the image
269 unsigned int d_w, unsigned int d_h,
  /external/libvpx/libvpx/vpx/src/
vpx_image.c 19 unsigned int d_w, unsigned int d_h,
74 w = d_w;
97 w = (d_w + align) & ~align;
128 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img;
136 unsigned int d_w, unsigned int d_h,
138 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL);
141 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
146 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data);
154 img->d_w = w;
  /external/libaom/libaom/examples/
encoder_util.c 35 is_y_plane ? img1->d_w
36 : (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
40 assert(img1->d_w == img2->d_w && img1->d_h == img2->d_h);
110 uint32_t l_w = img1->d_w;
111 uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
117 match &= (img1->d_w == img2->d_w);
decode_to_md5.c 52 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w;
119 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
scalable_decoder.c 160 aom_img_alloc(NULL, AOM_IMG_FMT_I420, img->d_w, img->d_h, 16);
lightfield_tile_list_decoder.c 58 const uint8_t output_frame_width_in_tiles = img->d_w / tile_width;
181 printf("writing ref image to %s, %d, %d\n", name, img->d_w, img->d_h);
  /external/libaom/libaom/common/
tools_common.c 249 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
262 int w = src->d_w;
284 if (dst->d_w != src->d_w || dst->d_h != src->d_h ||
298 int w = src->d_w;
327 if (dst->fmt + AOM_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w ||
339 int w = src->d_w;
360 if (dst->d_w != src->d_w || dst->d_h != src->d_h |
    [all...]
  /external/libvpx/libvpx/examples/
decode_to_md5.c 53 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w;
120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h,
vp9cx_set_ref.c 73 uint32_t l_w = img1->d_w;
74 uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
81 match &= (img1->d_w == img2->d_w);
110 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift;
117 for (j = 0; match && j < img1->d_w; j += bsize) {
120 const int sj = mmin(j + bsize, img1->d_w) - j;
  /external/libvpx/libvpx/vp9/
vp9_iface_common.h 44 img->d_w = yv12->y_crop_width;
87 yv12->y_crop_width = img->d_w;
91 yv12->y_width = img->d_w;
  /external/libaom/libaom/apps/
aomdec.c 129 src->d_w, src->d_h, (uint16_t *)dst->planes[AOM_PLANE_Y],
132 dst->stride[AOM_PLANE_V] / 2, dst->d_w, dst->d_h, mode);
138 src->planes[AOM_PLANE_V], src->stride[AOM_PLANE_V], src->d_w,
141 dst->planes[AOM_PLANE_V], dst->stride[AOM_PLANE_V], dst->d_w,
346 unsigned int d_w, unsigned int d_h,
360 case 'w': snprintf(q, q_len - 1, "%d", d_w); break;
823 render_width = img->d_w;
837 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) {
863 aom_input_ctx.width = img->d_w;
    [all...]
  /external/libaom/libaom/av1/
av1_iface_common.h 46 img->d_w = yv12->y_crop_width;
84 yv12->y_crop_width = img->d_w;

Completed in 580 milliseconds

1 2