Home
last modified time | relevance | path

Searched refs:y_chroma_shift (Results 1 – 11 of 11) sorted by relevance

/external/libvpx/libvpx/
Dtools_common.c231 if (plane > 0 && img->y_chroma_shift > 0) in vpx_img_plane_height()
232 return (img->d_h + 1) >> img->y_chroma_shift; in vpx_img_plane_height()
297 dst->y_chroma_shift != src->y_chroma_shift || in highbd_img_upshift()
317 h = (h + src->y_chroma_shift) >> src->y_chroma_shift; in highbd_img_upshift()
337 dst->y_chroma_shift != src->y_chroma_shift || in lowbd_img_upshift()
358 h = (h + src->y_chroma_shift) >> src->y_chroma_shift; in lowbd_img_upshift()
385 dst->y_chroma_shift != src->y_chroma_shift) { in vpx_img_truncate_16_to_8()
404 h = (h + src->y_chroma_shift) >> src->y_chroma_shift; in vpx_img_truncate_16_to_8()
422 dst->y_chroma_shift != src->y_chroma_shift || in highbd_img_downshift()
442 h = (h + src->y_chroma_shift) >> src->y_chroma_shift; in highbd_img_downshift()
[all …]
Dvpxenc.c558 const uint32_t bsizey = bsize >> img1->y_chroma_shift; in find_mismatch_high()
563 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch_high()
650 const uint32_t bsizey = bsize >> img1->y_chroma_shift; in find_mismatch()
655 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in find_mismatch()
742 (img1->d_h + img1->y_chroma_shift) >> img1->y_chroma_shift; in compare_img()
Dy4minput.c1035 _img->y_chroma_shift = _y4m->dst_c_dec_v >> 1; in y4m_input_fetch_frame()
/external/libvpx/libvpx/vpx/src/
Dvpx_image.c167 img->y_chroma_shift = ycs; in img_alloc_helper()
235 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
236 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
239 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V]; in vpx_img_set_rect()
243 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_V]; in vpx_img_set_rect()
244 data += (img->h >> img->y_chroma_shift) * img->stride[VPX_PLANE_V]; in vpx_img_set_rect()
247 (y >> img->y_chroma_shift) * img->stride[VPX_PLANE_U]; in vpx_img_set_rect()
265 img->planes[VPX_PLANE_U] += (signed)((img->d_h >> img->y_chroma_shift) - 1) in vpx_img_flip()
269 img->planes[VPX_PLANE_V] += (signed)((img->d_h >> img->y_chroma_shift) - 1) in vpx_img_flip()
/external/libvpx/libvpx/test/
Dy4m_test.cc63 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()
104 ASSERT_EQ(img()->y_chroma_shift, 1U); in HeaderChecks()
109 ASSERT_EQ(img()->y_chroma_shift, 0U); in HeaderChecks()
114 ASSERT_EQ(img()->y_chroma_shift, 0U); in HeaderChecks()
Dmd5_helper.h33 const int h = plane ? (img->d_h + img->y_chroma_shift) >> in Add()
34 img->y_chroma_shift : img->d_h; in Add()
Dactive_map_refresh_test.cc33 if (plane > 0 && current.y_chroma_shift) { in CheckMb()
/external/libvpx/libvpx/vp9/
Dvp9_iface_common.h49 img->y_chroma_shift = yv12->subsampling_y; in yuvconfig2image()
96 yv12->uv_height = img->y_chroma_shift == 1 ? (1 + yv12->y_height) / 2 in image2yuvconfig()
132 yv12->subsampling_y = img->y_chroma_shift; in image2yuvconfig()
/external/libvpx/libvpx/vpx/
Dvpx_image.h108 unsigned int y_chroma_shift; /**< subsampling order, Y */ member
/external/libvpx/libvpx/vp8/
Dvp8_dx_iface.c252 img->y_chroma_shift = 1; in yuvconfig2image()
Dvp8_cx_iface.c1149 ctx->preview_img.y_chroma_shift = 1; in vp8e_get_preview()