Commit d084892a authored by michael's avatar michael

cosmetic


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5690 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dbb286d7
......@@ -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;
}
/**
......
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