Commit c62842ea authored by gpoirier's avatar gpoirier

Fix CHECK_BIDIR macro so it works with Intel's Compiler

Patch by Marco Manfredini  mldb A gmx P net


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5989 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 142c7435
......@@ -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