From: Marco Manfredini Date: Sat, 12 Aug 2006 16:31:17 +0000 (+0000) Subject: Fix CHECK_BIDIR macro so it works with Intel's Compiler X-Git-Tag: v0.5~12130 X-Git-Url: https://git.videolan.org/?p=ffmpeg.git;a=commitdiff_plain;h=8226ecaa6c7ba0c1e7ae9d575bcbdac95aaf673e;ds=sidebyside 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 --- 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)\