[Ffmpeg-cvslog] r5989 - trunk/libavcodec/motion_est.c
gpoirier
subversion
Sat Aug 12 18:31:17 CEST 2006
Author: gpoirier
Date: Sat Aug 12 18:31:17 2006
New Revision: 5989
Modified:
trunk/libavcodec/motion_est.c
Log:
Fix CHECK_BIDIR macro so it works with Intel's Compiler
Patch by Marco Manfredini mldb A gmx P net
Modified: trunk/libavcodec/motion_est.c
==============================================================================
--- trunk/libavcodec/motion_est.c (original)
+++ trunk/libavcodec/motion_est.c Sat Aug 12 18:31:17 2006
@@ -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)\
More information about the ffmpeg-cvslog
mailing list