Commit ac003d24 authored by Michael Niedermayer's avatar Michael Niedermayer

cosmetic (prevent name clashes of variables in a macro with surrounding code)

Originally committed as revision 7191 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 98ba1cfa
...@@ -517,11 +517,11 @@ static int qpel_motion_search(MpegEncContext * s, ...@@ -517,11 +517,11 @@ static int qpel_motion_search(MpegEncContext * s,
#define CHECK_CLIPED_MV(ax,ay)\ #define CHECK_CLIPED_MV(ax,ay)\
{\ {\
const int x= ax;\ const int Lx= ax;\
const int y= ay;\ const int Ly= ay;\
const int x2= FFMAX(xmin, FFMIN(x, xmax));\ const int Lx2= FFMAX(xmin, FFMIN(Lx, xmax));\
const int y2= FFMAX(ymin, FFMIN(y, ymax));\ const int Ly2= FFMAX(ymin, FFMIN(Ly, ymax));\
CHECK_MV(x2, y2)\ CHECK_MV(Lx2, Ly2)\
} }
#define CHECK_MV_DIR(x,y,new_dir)\ #define CHECK_MV_DIR(x,y,new_dir)\
......
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