Commit 18769c0a authored by Michael Niedermayer's avatar Michael Niedermayer

cosmetic

Originally committed as revision 5690 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a7702890
...@@ -410,12 +410,9 @@ static inline int mid_pred(int a, int b, int c) ...@@ -410,12 +410,9 @@ static inline int mid_pred(int a, int b, int c)
*/ */
static inline int clip(int a, int amin, int amax) static inline int clip(int a, int amin, int amax)
{ {
if (a < amin) if (a < amin) return amin;
return amin; else if (a > amax) return amax;
else if (a > amax) else return a;
return amax;
else
return a;
} }
/** /**
......
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