Commit 0ff4953e authored by Michael Niedermayer's avatar Michael Niedermayer

avfilter/vf_ssim: Fix "incompatible pointer type" warnings

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent fd4c87fa
......@@ -168,7 +168,7 @@ static float ssim_plane(SSIMDSPContext *dsp,
sum0, width);
}
ssim += dsp->ssim_end_line(sum0, sum1, width - 1);
ssim += dsp->ssim_end_line((const int (*)[4])sum0, (const int (*)[4])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