diff --git a/libavfilter/vf_phase.c b/libavfilter/vf_phase.c index 82dc603efe5be598d8aab819de8b7f681a3d8755..23b339c8802d023abe15500f97c2f5d97f50930e 100644 --- a/libavfilter/vf_phase.c +++ b/libavfilter/vf_phase.c @@ -106,7 +106,7 @@ static int config_input(AVFilterLink *inlink) * * (The result is actually multiplied by 25) */ -#define DIFF(a, as, b, bs) (t = ((*a - b[bs]) << 2) + a[as << 1] - b[-bs], t * t) +#define DIFF(a, as, b, bs) ((t) = ((*(a) - (b)[bs]) << 2) + (a)[(as) << 1] - (b)[-(bs)], (t) * (t)) /* * Find which field combination has the smallest average squared difference