changeset 3575:4baed6f6577b libavcodec

Fix CHECK_BIDIR macro so it works with Intel's Compiler Patch by Marco Manfredini mldb A gmx P net
author gpoirier
date Sat, 12 Aug 2006 16:31:17 +0000
parents f549d1e685f7
children f7125bf10892
files motion_est.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/motion_est.c	Fri Aug 11 18:19:37 2006 +0000
+++ b/motion_est.c	Sat Aug 12 16:31:17 2006 +0000
@@ -1670,7 +1670,7 @@
     }
 #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)\