From 8226ecaa6c7ba0c1e7ae9d575bcbdac95aaf673e Mon Sep 17 00:00:00 2001 From: Marco Manfredini Date: Sat, 12 Aug 2006 16:31:17 +0000 Subject: [PATCH] Fix CHECK_BIDIR macro so it works with Intel's Compiler Patch by Marco Manfredini mldb A gmx P net Originally committed as revision 5989 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/motion_est.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/motion_est.c b/libavcodec/motion_est.c index 82b5f766ec..27e1225ca4 100644 --- a/libavcodec/motion_est.c +++ b/libavcodec/motion_est.c @@ -1670,7 +1670,7 @@ static inline int bidir_refine(MpegEncContext * s, int mb_x, int mb_y) } #define CHECK_BIDIR2(a,b,c,d)\ CHECK_BIDIR(a,b,c,d)\ -CHECK_BIDIR(-a,-b,-c,-d) +CHECK_BIDIR(-(a),-(b),-(c),-(d)) #define CHECK_BIDIRR(a,b,c,d)\ CHECK_BIDIR2(a,b,c,d)\