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
This commit is contained in:
Marco Manfredini 2006-08-12 16:31:17 +00:00 committed by Guillaume Poirier
parent 71295009be
commit 8226ecaa6c
1 changed files with 1 additions and 1 deletions

View File

@ -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)\