diff options
author | Marco Manfredini <mldb@gmx.net> | 2006-08-12 16:31:17 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-08-12 16:31:17 +0000 |
commit | 8226ecaa6c7ba0c1e7ae9d575bcbdac95aaf673e (patch) | |
tree | ea0dbee296bf4fbcb4772df4fb447413cadf7969 /libavcodec/motion_est.c | |
parent | 71295009be694beac7b6f963f1341bdb7cf886da (diff) | |
download | ffmpeg-8226ecaa6c7ba0c1e7ae9d575bcbdac95aaf673e.tar.gz |
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
Diffstat (limited to 'libavcodec/motion_est.c')
-rw-r--r-- | libavcodec/motion_est.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)\ |