Home
last modified time | relevance | path

Searched refs:img2 (Results 1 – 7 of 7) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dutil.h23 const vpx_image_t *img2) { in compute_psnr() argument
24 assert((img1->fmt == img2->fmt) && in compute_psnr()
25 (img1->d_w == img2->d_w) && in compute_psnr()
26 (img1->d_h == img2->d_h)); in compute_psnr()
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j]; in compute_psnr()
Dencode_test_driver.cc108 const vpx_image_t *img2) { in compare_img() argument
109 bool match = (img1->fmt == img2->fmt) && in compare_img()
110 (img1->d_w == img2->d_w) && in compare_img()
111 (img1->d_h == img2->d_h); in compare_img()
118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y], in compare_img()
124 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U], in compare_img()
128 img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V], in compare_img()
134 const vpx_image_t *img2) { in MismatchHook() argument
Derror_resilience_test.cc105 const vpx_image_t *img2) { in MismatchHook() argument
106 double mismatch_psnr = compute_psnr(img1, img2); in MismatchHook()
Dencode_test_driver.h218 const vpx_image_t *img2);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_ssim.c78 double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1, in vp9_ssim2() argument
86 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) { in vp9_ssim2()
88 double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2); in vp9_ssim2()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dvpxenc.c470 const vpx_image_t *const img2, in find_mismatch() argument
491 *(img2->planes[VPX_PLANE_Y] + in find_mismatch()
492 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) { in find_mismatch()
497 yloc[3] = *(img2->planes[VPX_PLANE_Y] + in find_mismatch()
498 (i + k) * img2->stride[VPX_PLANE_Y] + j + l); in find_mismatch()
517 *(img2->planes[VPX_PLANE_U] + in find_mismatch()
518 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) { in find_mismatch()
523 uloc[3] = *(img2->planes[VPX_PLANE_U] + in find_mismatch()
524 (i + k) * img2->stride[VPX_PLANE_U] + j + l); in find_mismatch()
542 *(img2->planes[VPX_PLANE_V] + in find_mismatch()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
Dssim.c150 unsigned char *img2, in vp8_ssim2() argument
162 for(i=0; i < height-8; i+=4, img1 += stride_img1*4, img2 += stride_img2*4) in vp8_ssim2()
166 double v = ssim_8x8(img1+j, stride_img1, img2+j, stride_img2); in vp8_ssim2()