/external/libvpx/libvpx/vpx/src/ |
D | vpx_image.c | 21 unsigned int d_h, in img_alloc_helper() argument 129 h = (d_h + align) & ~align; in img_alloc_helper() 175 if (!vpx_img_set_rect(img, 0, 0, d_w, d_h)) in img_alloc_helper() 186 unsigned int d_h, in vpx_img_alloc() argument 188 return img_alloc_helper(img, fmt, d_w, d_h, align, align, NULL); in vpx_img_alloc() 194 unsigned int d_h, in vpx_img_wrap() argument 199 return img_alloc_helper(img, fmt, d_w, d_h, 1, stride_align, img_data); in vpx_img_wrap() 211 img->d_h = h; in vpx_img_set_rect() 262 img->planes[VPX_PLANE_Y] += (signed)(img->d_h - 1) * img->stride[VPX_PLANE_Y]; in vpx_img_flip() 265 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1) in vpx_img_flip() [all …]
|
/external/libvpx/libvpx/ |
D | tools_common.c | 232 return (img->d_h + 1) >> img->y_chroma_shift; in vpx_img_plane_height() 234 return img->d_h; in vpx_img_plane_height() 295 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_upshift() 313 int h = src->d_h; in highbd_img_upshift() 335 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in lowbd_img_upshift() 354 int h = src->d_h; in lowbd_img_upshift() 383 dst->d_w != src->d_w || dst->d_h != src->d_h || in vpx_img_truncate_16_to_8() 400 int h = src->d_h; in vpx_img_truncate_16_to_8() 420 if (dst->d_w != src->d_w || dst->d_h != src->d_h || in highbd_img_downshift() 438 int h = src->d_h; in highbd_img_downshift() [all …]
|
D | vpxdec.c | 148 src->d_w, src->d_h, in libyuv_scale() 155 dst->d_w, dst->d_h, in libyuv_scale() 164 src->d_w, src->d_h, in libyuv_scale() 168 dst->d_w, dst->d_h, in libyuv_scale() 417 unsigned int d_w, unsigned int d_h, in generate_filename() argument 435 snprintf(q, q_len - 1, "%d", d_h); in generate_filename() 535 img->d_h != shifted->d_h || in img_shifted_realloc_required() 964 render_height = img->d_h; in main_loop() 975 if (img->d_w != scaled_img->d_w || img->d_h != scaled_img->d_h) { in main_loop() 1005 img->d_w, img->d_h, 16); in main_loop() [all …]
|
D | vpxenc.c | 563 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch_high() 571 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { in find_mismatch_high() 574 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch_high() 655 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch() 659 for (i = 0, match = 1; match && i < img1->d_h; i += bsize) { in find_mismatch() 662 const int si = mmin(i + bsize, img1->d_h) - i; in find_mismatch() 742 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in compare_img() 748 match &= (img1->d_h == img2->d_h); in compare_img() 756 for (i = 0; i < img1->d_h; ++i) in compare_img() 1597 (img->d_w != cfg->g_w || img->d_h != cfg->g_h)) { in encode_frame() [all …]
|
D | y4minput.c | 1033 _img->h = _img->d_h = _y4m->pic_h; in y4m_input_fetch_frame()
|
/external/libvpx/libvpx/test/ |
D | encode_test_driver.cc | 29 cfg_.g_h = img->d_h; in InitEncoder() 87 if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) { in EncodeFrameInternal() 89 cfg_.g_h = img->d_h; in EncodeFrameInternal() 148 (img1->d_h == img2->d_h); in compare_img() 151 const unsigned int height_y = img1->d_h; in compare_img() 158 const unsigned int height_uv = (img1->d_h + 1) >> 1; in compare_img()
|
D | util.h | 25 (img1->d_h == img2->d_h)); in compute_psnr() 28 const unsigned int height_y = img1->d_h; in compute_psnr()
|
D | md5_helper.h | 33 const int h = plane ? (img->d_h + img->y_chroma_shift) >> in Add() 34 img->y_chroma_shift : img->d_h; in Add()
|
D | y4m_test.cc | 63 const int h = (plane ? (img->d_h + img->y_chroma_shift) >> in write_image_file() 64 img->y_chroma_shift : img->d_h); in write_image_file() 98 ASSERT_EQ(img()->d_h, kHeight); in HeaderChecks()
|
D | active_map_refresh_test.cc | 25 int r_top = std::min(r + 16, static_cast<int>(current.d_h)); in CheckMb() 85 const int height = static_cast<int>(current->d_h); in PreEncodeFrameHook()
|
D | resize_test.cc | 139 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h)); in DecompressedFrameHook() 317 frame_info_list_.push_back(FrameInfo(pts, img.d_w, img.d_h)); in DecompressedFrameHook()
|
/external/libvpx/libvpx/vpx/ |
D | vpx_image.h | 100 unsigned int d_h; /**< Displayed image height */ member 164 unsigned int d_h, 189 unsigned int d_h,
|
/external/libvpx/libvpx/examples/ |
D | decode_to_md5.c | 54 const int h = plane ? (img->d_h + 1) >> 1 : img->d_h; in get_image_md5() 125 img->d_w, img->d_h, ++frame_cnt); in main()
|
D | vp8_multi_resolution_encoder.c | 96 int h = (plane ? (1 + img->d_h) / 2 : img->d_h); in read_frame_by_row() 607 raw[i-1].d_w, raw[i-1].d_h, in main() 611 raw[i].d_w, raw[i].d_h, 1); in main()
|
/external/clang/test/SemaCUDA/ |
D | function-overload.cu | 239 struct d_h { struct 240 ~d_h() {} // expected-note {{previous declaration is here}} in ~d_h() argument 241 __host__ ~d_h() {} // expected-error {{destructor cannot be redeclared}} in ~d_h() argument
|
/external/libvpx/libvpx/vp9/ |
D | vp9_iface_common.h | 45 img->d_h = yv12->y_crop_height; in yuvconfig2image() 88 yv12->y_crop_height = img->d_h; in image2yuvconfig() 92 yv12->y_height = img->d_h; in image2yuvconfig()
|
D | vp9_cx_iface.c | 365 if (img->d_w != ctx->cfg.g_w || img->d_h != ctx->cfg.g_h) in validate_img()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/ |
D | vp8_impl.cc | 739 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_images_[0].d_h)); in Encode() 763 raw_images_[i - 1].d_h, raw_images_[i].planes[VPX_PLANE_Y], in Encode() 767 raw_images_[i].d_h, libyuv::kFilterBilinear); in Encode() 913 raw_images_[0].d_h = codec_.height; in UpdateCodecFrameSize() 1336 last_frame_height_ = img->d_h; 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/libvpx/libvpx/vp8/ |
D | vp8_dx_iface.c | 250 img->d_h = img->r_h = yv12->y_height; in yuvconfig2image() 559 const int y_h = img->d_h; in image2yuvconfig() 561 const int uv_h = (img->d_h + 1) / 2; in image2yuvconfig()
|
D | vp8_cx_iface.c | 276 if ((img->d_w != ctx->cfg.g_w) || (img->d_h != ctx->cfg.g_h)) in validate_img() 735 const int y_h = img->d_h; in image2yuvconfig() 737 const int uv_h = (img->d_h + 1) / 2; in image2yuvconfig() 1152 ctx->preview_img.d_h = sd.y_height; in vp8e_get_preview()
|
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/ |
D | vp9_impl.cc | 493 RTC_DCHECK_EQ(input_image.height(), static_cast<int>(raw_->d_h)); in Encode() 693 encoded_image_._encodedHeight = raw_->d_h; in GetEncodedLayerFrame() 945 img->d_w, img->d_h, img->planes[VPX_PLANE_Y], in ReturnFrame()
|