You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avfilter/vf_ssim: Fix "incompatible pointer type" warnings
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -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));
|
||||
|
Reference in New Issue
Block a user