Commit a1f48480 authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Michael Niedermayer

ssim: refactor a weird double loop.

Reviewed-by: 's avatarPaul B Mahol <onemda@gmail.com>
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 4496ccc7
......@@ -132,7 +132,7 @@ static float ssim_end1(int s1, int s2, int ss, int s12)
/ ((float)(fs1 * fs1 + fs2 * fs2 + ssim_c1) * (float)(vars + ssim_c2));
}
static float ssim_end4(int sum0[5][4], int sum1[5][4], int width)
static float ssim_endn(int (*sum0)[4], int (*sum1)[4], int width)
{
float ssim = 0.0;
int i;
......@@ -167,8 +167,7 @@ static float ssim_plane(uint8_t *main, int main_stride,
&sum0[x]);
}
for (x = 0; x < width - 1; x += 4)
ssim += ssim_end4(sum0 + x, sum1 + x, FFMIN(4, width - x - 1));
ssim += ssim_endn(sum0, sum1, width - 1);
}
return ssim / ((height - 1) * (width - 1));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment