Browse Source

Fix broken 32-bit clipping, and write numbers in hex instead of decimal so

they are easier to understand. Also give the add a 'u' postfix to silence
a pre-c99 compiler warning.

Originally committed as revision 22965 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Ronald S. Bultje 15 years ago
parent
commit
2d0525c27c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavutil/common.h

+ 1
- 1
libavutil/common.h View File

@@ -151,7 +151,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+2147483648) & ~2147483647) return (a>>63) ^ 2147483647;
if ((a+0x80000000u) & ~UINT64_C(0xFFFFFFFF)) return (a>>63) ^ 0x7FFFFFFF;
else return a;
}



Loading…
Cancel
Save