Home | History | Annotate | Download | only in vpx_dsp

Lines Matching refs:img1

124 static double vpx_ssim2(const uint8_t *img1, const uint8_t *img2,
133 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) {
135 double v = ssim_8x8(img1 + j, stride_img1, img2 + j, stride_img2);
145 static double vpx_highbd_ssim2(const uint8_t *img1, const uint8_t *img2,
154 i += 4, img1 += stride_img1 * 4, img2 += stride_img2 * 4) {
156 double v = highbd_ssim_8x8(CONVERT_TO_SHORTPTR(img1 + j), stride_img1,
265 static void ssimv_parms(uint8_t *img1, int img1_pitch, uint8_t *img2,
267 vpx_ssim_parms_8x8(img1, img1_pitch, img2, img2_pitch, &sv->sum_s, &sv->sum_r,
271 double vpx_get_ssim_metrics(uint8_t *img1, int img1_pitch, uint8_t *img2,
285 i += 4, img1 += img1_pitch * 4, img2 += img2_pitch * 4) {
303 ssimv_parms(img1 + j, img1_pitch, img2 + j, img2_pitch, &sv);