Searched refs:img2 (Results 1 - 16 of 16) sorted by path

/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dencode_test_driver.cc111 const vpx_image_t *img2) {
112 bool match = (img1->fmt == img2->fmt) &&
113 (img1->d_w == img2->d_w) &&
114 (img1->d_h == img2->d_h);
121 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
127 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
131 img2->planes[VPX_PLANE_V] + i * img2
110 compare_img(const vpx_image_t *img1, const vpx_image_t *img2) argument
[all...]
H A Dencode_test_driver.h219 const vpx_image_t *img2);
H A Derror_resilience_test.cc105 const vpx_image_t *img2) {
106 double mismatch_psnr = compute_psnr(img1, img2);
104 MismatchHook(const vpx_image_t *img1, const vpx_image_t *img2) argument
H A Dutil.h23 const vpx_image_t *img2) {
24 assert((img1->fmt == img2->fmt) &&
25 (img1->d_w == img2->d_w) &&
26 (img1->d_h == img2->d_h));
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
22 compute_psnr(const vpx_image_t *img1, const vpx_image_t *img2) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dssim.c150 unsigned char *img2,
162 for(i=0; i < height-8; i+=4, img1 += stride_img1*4, img2 += stride_img2*4)
166 double v = ssim_8x8(img1+j, stride_img1, img2+j, stride_img2);
147 vp8_ssim2( unsigned char *img1, unsigned char *img2, int stride_img1, int stride_img2, int width, int height ) argument
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_ssim.c79 double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1, argument
87 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) {
89 double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2);
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvpxenc.c485 const vpx_image_t *const img2,
500 plane2 = (uint16_t*)img2->planes[VPX_PLANE_Y];
502 stride2 = img2->stride[VPX_PLANE_Y]/2;
526 plane2 = (uint16_t*)img2->planes[VPX_PLANE_U];
528 stride2 = img2->stride[VPX_PLANE_U]/2;
552 plane2 = (uint16_t*)img2->planes[VPX_PLANE_V];
554 stride2 = img2->stride[VPX_PLANE_V]/2;
579 const vpx_image_t *const img2,
600 *(img2->planes[VPX_PLANE_Y] +
601 (i + k) * img2
484 find_mismatch_high(const vpx_image_t *const img1, const vpx_image_t *const img2, int yloc[4], int uloc[4], int vloc[4]) argument
578 find_mismatch(const vpx_image_t *const img1, const vpx_image_t *const img2, int yloc[4], int uloc[4], int vloc[4]) argument
668 compare_img(const vpx_image_t *const img1, const vpx_image_t *const img2) argument
[all...]
/external/chromium_org/ui/gfx/image/
H A Dimage_unittest_util.cc81 bool IsEqual(const gfx::Image& img1, const gfx::Image& img2) { argument
83 img2.AsImageSkia().EnsureRepsForSupportedScales();
85 gfx::ImageSkia image_skia2 = img2.AsImageSkia();
/external/libvpx/libvpx/test/
H A Dencode_test_driver.cc108 const vpx_image_t *img2) {
109 bool match = (img1->fmt == img2->fmt) &&
110 (img1->d_w == img2->d_w) &&
111 (img1->d_h == img2->d_h);
118 img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
124 img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
128 img2->planes[VPX_PLANE_V] + i * img2
107 compare_img(const vpx_image_t *img1, const vpx_image_t *img2) argument
133 MismatchHook(const vpx_image_t *img1, const vpx_image_t *img2) argument
[all...]
H A Dencode_test_driver.h218 const vpx_image_t *img2);
H A Derror_resilience_test.cc105 const vpx_image_t *img2) {
106 double mismatch_psnr = compute_psnr(img1, img2);
104 MismatchHook(const vpx_image_t *img1, const vpx_image_t *img2) argument
H A Dutil.h23 const vpx_image_t *img2) {
24 assert((img1->fmt == img2->fmt) &&
25 (img1->d_w == img2->d_w) &&
26 (img1->d_h == img2->d_h));
36 img2->planes[VPX_PLANE_Y][i * img2->stride[VPX_PLANE_Y] + j];
22 compute_psnr(const vpx_image_t *img1, const vpx_image_t *img2) argument
/external/libvpx/libvpx/vp8/encoder/
H A Dssim.c150 unsigned char *img2,
162 for(i=0; i < height-8; i+=4, img1 += stride_img1*4, img2 += stride_img2*4)
166 double v = ssim_8x8(img1+j, stride_img1, img2+j, stride_img2);
147 vp8_ssim2( unsigned char *img1, unsigned char *img2, int stride_img1, int stride_img2, int width, int height ) argument
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ssim.c79 double vp9_ssim2(uint8_t *img1, uint8_t *img2, int stride_img1, argument
87 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) {
89 double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2);
/external/libvpx/libvpx/
H A Dvpxenc.c470 const vpx_image_t *const img2,
491 *(img2->planes[VPX_PLANE_Y] +
492 (i + k) * img2->stride[VPX_PLANE_Y] + j + l)) {
497 yloc[3] = *(img2->planes[VPX_PLANE_Y] +
498 (i + k) * img2->stride[VPX_PLANE_Y] + j + l);
517 *(img2->planes[VPX_PLANE_U] +
518 (i + k) * img2->stride[VPX_PLANE_U] + j + l)) {
523 uloc[3] = *(img2->planes[VPX_PLANE_U] +
524 (i + k) * img2->stride[VPX_PLANE_U] + j + l);
542 *(img2
469 find_mismatch(const vpx_image_t *const img1, const vpx_image_t *const img2, int yloc[4], int uloc[4], int vloc[4]) argument
559 compare_img(const vpx_image_t *const img1, const vpx_image_t *const img2) argument
[all...]
/external/opencv/cxcore/src/
H A D_cxipp.h326 const srctype* img2, int imgstep2, \
331 const srctype* img2, int imgstep2, \
336 const srctype* img2, int imgstep2, \
355 const srctype* img2, int imgstep2, \
360 const srctype* img2, int imgstep2, \
365 const srctype* img2, int imgstep2, \
387 const srctype* img2, int imgstep2, \
393 const srctype* img2, int imgstep2, \
399 const srctype* img2, int imgstep2, \

Completed in 699 milliseconds