summaryrefslogtreecommitdiff
path: root/libavutil/common.h
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2010-04-26 21:01:38 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2010-04-26 21:01:38 +0000
commit90bc36b063878dfb6035cc71bb546c99d5f1df1c (patch)
tree64a0360f49af9c574e0579d24c12b1bff5aec59f /libavutil/common.h
parentad6408960b38ddc6dfbb734e6fcbe07fe7d128ae (diff)
Reindent after r22968.
Originally committed as revision 22969 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/common.h')
-rw-r--r--libavutil/common.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index 2e72a83913..4aa00a9971 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -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;
}
/**