Home
last modified time | relevance | path

Searched refs:d_w (Results 1 – 23 of 23) sorted by relevance

/external/libvpx/libvpx/
Dtools_common.c207 return (img->d_w + 1) >> img->x_chroma_shift; in vpx_img_plane_width()
209 return img->d_w; in vpx_img_plane_width()
276 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift()
290 int w = src->d_w; in highbd_img_upshift()
312 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift()
326 int w = src->d_w; in lowbd_img_upshift()
354 if (dst->fmt + VPX_IMG_FMT_HIGHBITDEPTH != src->fmt || dst->d_w != src->d_w || in vpx_img_truncate_16_to_8()
367 int w = src->d_w; in vpx_img_truncate_16_to_8()
388 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift()
402 int w = src->d_w; in highbd_img_downshift()
[all …]
Dvpxdec.c138 src->d_w, src->d_h, (uint16_t *)dst->planes[VPX_PLANE_Y], in libyuv_scale()
141 dst->stride[VPX_PLANE_V] / 2, dst->d_w, dst->d_h, mode); in libyuv_scale()
148 src->planes[VPX_PLANE_V], src->stride[VPX_PLANE_V], src->d_w, in libyuv_scale()
151 dst->planes[VPX_PLANE_V], dst->stride[VPX_PLANE_V], dst->d_w, in libyuv_scale()
394 unsigned int d_w, unsigned int d_h, in generate_filename() argument
408 case 'w': snprintf(q, q_len - 1, "%d", d_w); break; in generate_filename()
482 return img->d_w != shifted->d_w || img->d_h != shifted->d_h || in img_shifted_realloc_required()
871 render_width = img->d_w; in main_loop()
883 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop()
915 vpx_img_alloc(NULL, shifted_fmt, img->d_w, img->d_h, 16); in main_loop()
[all …]
Dvpxenc.c597 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in find_mismatch_high()
608 for (j = 0; match && j < img1->d_w; j += bsize) { in find_mismatch_high()
611 const int sj = mmin(j + bsize, img1->d_w) - j; in find_mismatch_high()
689 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in find_mismatch()
696 for (j = 0; match && j < img1->d_w; j += bsize) { in find_mismatch()
699 const int sj = mmin(j + bsize, img1->d_w) - j; in find_mismatch()
774 uint32_t l_w = img1->d_w; in compare_img()
775 uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in compare_img()
782 match &= (img1->d_w == img2->d_w); in compare_img()
1576 (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { in encode_frame()
[all …]
Dy4minput.c1114 _img->w = _img->d_w = _y4m->pic_w; in y4m_input_fetch_frame()
/external/libvpx/libvpx/vpx/src/
Dvpx_image.c19 unsigned int d_w, unsigned int d_h, in img_alloc_helper() argument
93 w = d_w; in img_alloc_helper()
116 w = (d_w + align) & ~align; in img_alloc_helper()
147 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) return img; in img_alloc_helper()
155 unsigned int d_w, unsigned int d_h, in vpx_img_alloc() argument
157 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL); in vpx_img_alloc()
160 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w, in vpx_img_wrap() argument
165 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data); in vpx_img_wrap()
173 img->d_w = w; in vpx_img_set_rect()
/external/libvpx/libvpx/test/
Dencode_test_driver.cc28 cfg_.g_w = img->d_w; in InitEncoder()
77 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal()
78 cfg_.g_w = img->d_w; in EncodeFrameInternal()
129 (img1->d_w == img2->d_w) && (img1->d_h == img2->d_h); in compare_img()
131 const unsigned int width_y = img1->d_w; in compare_img()
140 const unsigned int width_uv = (img1->d_w + 1) >> 1; in compare_img()
Dutil.h23 assert((img1->fmt == img2->fmt) && (img1->d_w == img2->d_w) && in compute_psnr()
26 const unsigned int width_y = img1->d_w; in compute_psnr()
Dmd5_helper.h35 (plane ? (img->d_w + img->x_chroma_shift) >> img->x_chroma_shift in Add()
36 : img->d_w) * in Add()
Dy4m_test.cc67 (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()
Dactive_map_refresh_test.cc26 int c_top = std::min(c0 + 16, static_cast<int>(current.d_w)); in CheckMb()
85 const int width = static_cast<int>(current->d_w); in PreEncodeFrameHook()
Ddecode_svc_test.cc38 ASSERT_EQ(img.d_w, width_); in DecompressedFrameHook()
Dresize_test.cc282 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h)); in DecompressedFrameHook()
458 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h)); in DecompressedFrameHook()
/external/libvpx/libvpx/vpx/
Dvpx_image.h99 unsigned int d_w; /**< Displayed image width */ member
161 unsigned int d_w, unsigned int d_h,
183 vpx_image_t *vpx_img_wrap(vpx_image_t *img, vpx_img_fmt_t fmt, unsigned int d_w,
/external/libvpx/libvpx/examples/
Ddecode_to_md5.c53 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()
Dvp9cx_set_ref.c73 uint32_t l_w = img1->d_w; in compare_img()
74 uint32_t c_w = (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in compare_img()
81 match &= (img1->d_w == img2->d_w); in compare_img()
110 (img1->d_w + img1->x_chroma_shift) >> img1->x_chroma_shift; in find_mismatch()
117 for (j = 0; match && j < img1->d_w; j += bsize) { in find_mismatch()
120 const int sj = mmin(j + bsize, img1->d_w) - j; in find_mismatch()
Dvp8_multi_resolution_encoder.c85 int w = (plane ? (1 + img->d_w) / 2 : img->d_w); in read_frame_by_row()
472 if (raw[0].stride[VPX_PLANE_Y] == raw[0].d_w) in main()
554 raw[i - 1].d_w, raw[i - 1].d_h, raw[i].planes[VPX_PLANE_Y], in main()
557 raw[i].stride[VPX_PLANE_V], raw[i].d_w, raw[i].d_h, 1); in main()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h44 img->d_w = yv12->y_crop_width; in yuvconfig2image()
87 yv12->y_crop_width = img->d_w; in image2yuvconfig()
91 yv12->y_width = img->d_w; in image2yuvconfig()
Dvp9_cx_iface.c377 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h) in validate_img()
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c210 img->d_w = img->r_w = yv12->y_width; in yuvconfig2image()
479 const int y_w = img->d_w; in image2yuvconfig()
481 const int uv_w = (img->d_w + 1) / 2; in image2yuvconfig()
500 yv12->border = (img->stride[VPX_PLANE_Y] - img->d_w) / 2; in image2yuvconfig()
Dvp8_cx_iface.c268 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h)) in validate_img()
687 const int y_w = img->d_w; in image2yuvconfig()
689 const int uv_w = (img->d_w + 1) / 2; in image2yuvconfig()
1060 ctx->preview_img.d_w = sd.y_width; in vp8e_get_preview()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dvp8_impl.cc738 RTC_DCHECK_EQ(input_image.width(), static_cast<int>(raw_images_[0].d_w)); in Encode()
762 raw_images_[i - 1].stride[VPX_PLANE_V], raw_images_[i - 1].d_w, in Encode()
766 raw_images_[i].stride[VPX_PLANE_V], raw_images_[i].d_w, in Encode()
912 raw_images_[0].d_w = codec_.width; in UpdateCodecFrameSize()
1335 last_frame_width_ = img->d_w; in ReturnFrame()
1338 VideoFrame decoded_image(buffer_pool_.CreateBuffer(img->d_w, img->d_h), in ReturnFrame()
1346 img->d_w, img->d_h); in ReturnFrame()
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc492 RTC_DCHECK_EQ(input_image.width(), static_cast<int>(raw_->d_w)); in Encode()
694 encoded_image_._encodedWidth = raw_->d_w; in GetEncodedLayerFrame()
945 img->d_w, img->d_h, img->planes[VPX_PLANE_Y], in ReturnFrame()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/en-US/
Den-US_lh0_kpdf_mgc.pkb5031 )/&+,2857#!(58!*/656@ Fd7>8AFSIKTX`d_w�HLUTYc *B]b]kkn�iw���MDCOTN^dfo��F5�* K +�(��U(�S�…