Browse Source

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
tags/v0.5
Marco Manfredini Guillaume Poirier 19 years ago
parent
commit
8226ecaa6c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/motion_est.c

+ 1
- 1
libavcodec/motion_est.c 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)\


Loading…
Cancel
Save