Skip to content
Snippets Groups Projects
Commit 18769c0a authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

cosmetic

Originally committed as revision 5690 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a7702890
No related branches found
No related tags found
No related merge requests found
......@@ -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)
{
if (a < amin)
return amin;
else if (a > amax)
return amax;
else
return a;
if (a < amin) return amin;
else if (a > amax) return amax;
else return a;
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment