summaryrefslogtreecommitdiff
path: root/libavutil/common.h
diff options
context:
space:
mode:
authorMichael Bradshaw <mbradshaw@sorensonmedia.com>2012-05-16 11:39:20 -0600
committerMichael Niedermayer <michaelni@gmx.at>2012-05-25 02:41:28 +0200
commitb0e1557fe7b10fdd34afd4ba548019c29725e607 (patch)
treeacc1071986929fd19a6066cb18f5787c43a9212c /libavutil/common.h
parent65e63072f81641f50e5775be5c3b2873e8d6f38e (diff)
downloadffmpeg-b0e1557fe7b10fdd34afd4ba548019c29725e607.tar.gz
Fixed warnings about int64 to int32 conversion
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/common.h')
-rw-r--r--libavutil/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/common.h b/libavutil/common.h
index f4fcc9cebd..a11a3251e9 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -171,7 +171,7 @@ static av_always_inline av_const int16_t av_clip_int16_c(int a)
static av_always_inline av_const int32_t av_clipl_int32_c(int64_t a)
{
if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (a>>63) ^ 0x7FFFFFFF;
- else return a;
+ else return (int32_t)a;
}
/**
@@ -230,7 +230,7 @@ static av_always_inline av_const int av_popcount_c(uint32_t x)
*/
static av_always_inline av_const int av_popcount64_c(uint64_t x)
{
- return av_popcount(x) + av_popcount(x >> 32);
+ return av_popcount((uint32_t)x) + av_popcount(x >> 32);
}
#define MKTAG(a,b,c,d) ((a) | ((b) << 8) | ((c) << 16) | ((unsigned)(d) << 24))