Commit 8226ecaa authored by Marco Manfredini's avatar Marco Manfredini Committed by Guillaume Poirier

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
parent 71295009
......@@ -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)\
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment