Reindent after r22968.

Originally committed as revision 22969 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje 2010-04-26 21:01:38 +00:00
parent ad6408960b
commit 90bc36b063
1 changed files with 4 additions and 4 deletions

View File

@ -119,7 +119,7 @@ static inline av_const int av_clip(int a, int amin, int amax)
static inline av_const uint8_t av_clip_uint8(int a)
{
if (a&(~0xFF)) return (-a)>>31;
else return a;
else return a;
}
/**
@ -130,7 +130,7 @@ static inline av_const uint8_t av_clip_uint8(int a)
static inline av_const uint16_t av_clip_uint16(int a)
{
if (a&(~0xFFFF)) return (-a)>>31;
else return a;
else return a;
}
/**
@ -141,7 +141,7 @@ static inline av_const uint16_t av_clip_uint16(int a)
static inline av_const int16_t av_clip_int16(int a)
{
if ((a+0x8000) & ~0xFFFF) return (a>>31) ^ 0x7FFF;
else return a;
else return a;
}
/**
@ -152,7 +152,7 @@ static inline av_const int16_t av_clip_int16(int a)
static inline av_const int32_t av_clipl_int32(int64_t a)
{
if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (a>>63) ^ 0x7FFFFFFF;
else return a;
else return a;
}
/**