/external/libaom/aom/src/ |
D | aom_image.c | 32 aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, unsigned int d_h, in img_alloc_helper() argument 106 w = align_image_dimension(d_w, xcs, size_align); in img_alloc_helper() 170 aom_img_set_rect(img, 0, 0, d_w, d_h, border); in img_alloc_helper() 179 unsigned int d_w, unsigned int d_h, in aom_img_alloc() argument 181 return img_alloc_helper(img, fmt, d_w, d_h, align, align, 1, 0, NULL, NULL, in aom_img_alloc() 186 unsigned int d_w, unsigned int d_h, in aom_img_alloc_with_cb() argument 190 return img_alloc_helper(img, fmt, d_w, d_h, align, align, 1, 0, NULL, in aom_img_alloc_with_cb() 194 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, in aom_img_wrap() argument 199 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, 1, 0, img_data, in aom_img_wrap() 204 unsigned int d_w, unsigned int d_h, in aom_img_alloc_with_border() argument [all …]
|
/external/libaom/examples/ |
D | encoder_util.c | 35 is_y_plane ? img1->d_w in find_mismatch_plane() 36 : (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in find_mismatch_plane() 40 assert(img1->d_w == img2->d_w && img1->d_h == img2->d_h); in find_mismatch_plane() 110 uint32_t l_w = img1->d_w; in aom_compare_img() 111 uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in aom_compare_img() 117 match &= (img1->d_w == img2->d_w); in aom_compare_img()
|
D | decode_to_md5.c | 52 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w; in get_image_md5() 118 fprintf(outfile, " img-%ux%u-%04d.i420\n", img->d_w, img->d_h, in main()
|
/external/libvpx/ |
D | tools_common.c | 216 return (img->d_w + 1) >> img->x_chroma_shift; in vpx_img_plane_width() 218 return img->d_w; in vpx_img_plane_width() 367 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift() 381 int w = src->d_w; in highbd_img_upshift() 403 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift() 417 int w = src->d_w; in lowbd_img_upshift() 445 if (dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w || in vpx_img_truncate_16_to_8() 458 int w = src->d_w; in vpx_img_truncate_16_to_8() 479 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift() 493 int w = src->d_w; in highbd_img_downshift() [all …]
|
D | vpxdec.c | 161 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y], in libyuv_scale() 164 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode); in libyuv_scale() 171 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w, in libyuv_scale() 174 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w, in libyuv_scale() 424 unsigned int d_w, unsigned int d_h, in generate_filename() argument 438 case 'w': snprintf(q, q_len - 1, "%d", d_w); break; in generate_filename() 512 return img->d_w != shifted->d_w || img->d_h != shifted->d_h || in img_shifted_realloc_required() 931 render_width = img->d_w; in main_loop() 948 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop() 980 vpx_img_alloc(NULL, shifted_fmt, img->d_w, img->d_h, 16); in main_loop() [all …]
|
/external/libaom/common/ |
D | tools_common.c | 293 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift() 306 int w = src->d_w; in highbd_img_upshift() 328 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift() 342 int w = src->d_w; in lowbd_img_upshift() 371 if (dst->fmt + AOM_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w || in aom_img_truncate_16_to_8() 383 int w = src->d_w; in aom_img_truncate_16_to_8() 404 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift() 417 int w = src->d_w; in highbd_img_downshift() 437 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_downshift() 450 int w = src->d_w; in lowbd_img_downshift() [all …]
|
/external/libvpx/vpx/src/ |
D | vpx_image.c | 20 unsigned int d_w, unsigned int d_h, in img_alloc_helper() argument 81 w = d_w; in img_alloc_helper() 102 w = (d_w + align) & ~align; in img_alloc_helper() 133 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img; in img_alloc_helper() 141 unsigned int d_w, unsigned int d_h, in vpx_img_alloc() argument 143 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL); in vpx_img_alloc() 146 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, in vpx_img_wrap() argument 151 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data); in vpx_img_wrap() 158 img->d_w = w; in vpx_img_set_rect()
|
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/vp9/src/main/jni/ |
D | vpx_jni.cc | 108 const int imax = img->d_w & ~15; in convert_16_to_8_neon() 168 while (i < img->d_w) { in convert_16_to_8_neon() 183 const int32_t uvWidth = (img->d_w + 1) / 2; in convert_16_to_8_neon() 259 for (int x = 0; x < img->d_w; x++) { in convert_16_to_8_standard() 270 const int32_t uvWidth = (img->d_w + 1) / 2; in convert_16_to_8_standard() 297 int d_w; member 564 jOutputBuffer, initForYuvFrame, img->d_w, img->d_h, in DECODER_FUNC() 612 jfb->d_w = img->d_w; in DECODER_FUNC() 614 env->CallVoidMethod(jOutputBuffer, initForPrivateFrame, img->d_w, img->d_h); in DECODER_FUNC() 634 if (context->width != srcBuffer->d_w || context->height != srcBuffer->d_h) { in DECODER_FUNC() [all …]
|
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/vp9/src/main/jni/ |
D | vpx_jni.cc | 108 const int imax = img->d_w & ~15; in convert_16_to_8_neon() 168 while (i < img->d_w) { in convert_16_to_8_neon() 183 const int32_t uvWidth = (img->d_w + 1) / 2; in convert_16_to_8_neon() 259 for (int x = 0; x < img->d_w; x++) { in convert_16_to_8_standard() 270 const int32_t uvWidth = (img->d_w + 1) / 2; in convert_16_to_8_standard() 297 int d_w; member 564 jOutputBuffer, initForYuvFrame, img->d_w, img->d_h, in DECODER_FUNC() 612 jfb->d_w = img->d_w; in DECODER_FUNC() 614 env->CallVoidMethod(jOutputBuffer, initForPrivateFrame, img->d_w, img->d_h); in DECODER_FUNC() 634 if (context->width != srcBuffer->d_w || context->height != srcBuffer->d_h) { in DECODER_FUNC() [all …]
|
/external/libvpx/test/ |
D | encode_test_driver.cc | 29 cfg_.g_w = img->d_w; in InitEncoder() 79 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal() 80 cfg_.g_w = img->d_w; in EncodeFrameInternal() 131 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h); in compare_img() 135 const unsigned int width_y = img1->d_w; in compare_img() 144 const unsigned int width_uv = (img1->d_w + 1) >> 1; in compare_img()
|
D | util.h | 25 assert((img1->fmt == img2->fmt) && (img1->d_w == img2->d_w) && in compute_psnr() 28 const unsigned int width_y = img1->d_w; in compute_psnr()
|
D | md5_helper.h | 35 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift in Add() 36 : img->d_w) * in Add()
|
D | y4m_test.cc | 67 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift in write_image_file() 68 : img->d_w); in write_image_file() 96 ASSERT_EQ(img()->d_w, kWidth); in HeaderChecks()
|
/external/libaom/test/ |
D | util.h | 33 assert((img1->fmt == img2->fmt) && (img1->d_w == img2->d_w) && in compute_psnr() 36 const unsigned int width_y = img1->d_w; in compute_psnr()
|
D | encode_test_driver.cc | 32 cfg_.g_w = img->d_w; in InitEncoder() 65 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal() 66 cfg_.g_w = img->d_w; in EncodeFrameInternal() 134 img1->mc != img2->mc || img1->d_w != img2->d_w || in compare_img()
|
D | md5_helper.h | 36 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift in Add() 37 : img->d_w) * in Add()
|
/external/libvpx/vpx/ |
D | vpx_image.h | 83 unsigned int d_w; /**< Displayed image width */ member 145 unsigned int d_w, unsigned int d_h, 167 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
|
/external/libaom/aom/ |
D | aom_image.h | 195 unsigned int d_w; /**< Displayed image width */ member 257 unsigned int d_w, unsigned int d_h, 280 aom_image_t *aom_img_wrap(aom_image_t *img, aom_img_fmt_t fmt, unsigned int d_w, 306 unsigned int d_w, unsigned int d_h,
|
/external/libvpx/examples/ |
D | decode_to_md5.c | 53 const int w = plane ? (img->d_w + 1) >> 1 : img->d_w; in get_image_md5() 120 fprintf(outfile, " img-%dx%d-%04d.i420\n", img->d_w, img->d_h, in main()
|
/external/webrtc/modules/video_coding/codecs/vp9/ |
D | libvpx_vp9_decoder.cc | 280 img->d_w, img->d_h, img->planes[VPX_PLANE_Y], in ReturnFrame() 291 img->d_w, img->d_h, img->planes[VPX_PLANE_Y], in ReturnFrame() 302 img->d_w, img->d_h, img->planes[VPX_PLANE_Y], in ReturnFrame() 313 img->d_w, img->d_h, in ReturnFrame() 323 img->d_w, img->d_h, in ReturnFrame()
|
/external/libaom/apps/ |
D | aomdec.c | 129 src->d_w, src->d_h, (uint16_t *)dst->planes[AOM_PLANE_Y], in libyuv_scale() 132 dst->stride[AOM_PLANE_V] / 2, dst->d_w, dst->d_h, mode); in libyuv_scale() 138 src->planes[AOM_PLANE_V], src->stride[AOM_PLANE_V], src->d_w, in libyuv_scale() 141 dst->planes[AOM_PLANE_V], dst->stride[AOM_PLANE_V], dst->d_w, in libyuv_scale() 349 unsigned int d_w, unsigned int d_h, in generate_filename() argument 363 case 'w': snprintf(q, q_len - 1, "%d", d_w); break; in generate_filename() 860 render_width = img->d_w; in main_loop() 879 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop() 909 aom_input_ctx.width = img->d_w; in main_loop() 974 generate_filename(outfile_pattern, outfile_name, PATH_MAX, img->d_w, in main_loop()
|
/external/webrtc/modules/video_coding/codecs/vp8/ |
D | libvpx_vp8_decoder.cc | 310 if (last_frame_width_ != static_cast<int>(img->d_w) || in ReturnFrame() 316 last_frame_width_ = img->d_w; in ReturnFrame() 322 buffer_pool_.CreateI420Buffer(img->d_w, img->d_h); in ReturnFrame() 331 img->d_w, img->d_h); in ReturnFrame()
|
/external/libvpx/vp9/ |
D | vp9_iface_common.c | 41 img->d_w = yv12->y_crop_width; in yuvconfig2image() 84 yv12->y_crop_width = img->d_w; in image2yuvconfig() 88 yv12->y_width = img->d_w; in image2yuvconfig()
|
/external/webrtc/modules/video_coding/codecs/interface/ |
D | libvpx_interface.cc | 26 unsigned int d_w, in img_alloc() argument 29 return ::vpx_img_alloc(img, fmt, d_w, d_h, align); in img_alloc() 34 unsigned int d_w, in img_wrap() argument 38 return ::vpx_img_wrap(img, fmt, d_w, d_h, stride_align, img_data); in img_wrap()
|
D | libvpx_interface.h | 35 unsigned int d_w, 40 unsigned int d_w,
|