From: Benjamin Larsson Date: Mon, 29 Jan 2007 08:58:03 +0000 (+0000) Subject: Kill a warning and don't use modulus. X-Git-Tag: v0.5~10303 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6e584be16c5f62557ee4b4e543bfa7158252f88c;p=platform%2Fupstream%2Flibav.git Kill a warning and don't use modulus. Originally committed as revision 7754 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/cook.c b/libavcodec/cook.c index 178b103..75752ab 100644 --- a/libavcodec/cook.c +++ b/libavcodec/cook.c @@ -303,7 +303,7 @@ static inline int decode_bytes(uint8_t* inbuffer, uint8_t* out, int bytes){ * (int64_t)out[i] = 0x37c511f237c511f2^be2me_64(int64_t)in[i]); * Buffer alignment needs to be checked. */ - off = (uint32_t)inbuffer % 4; + off = (int)((long)inbuffer & 3); buf = (uint32_t*) (inbuffer - off); c = be2me_32((0x37c511f2 >> (off*8)) | (0x37c511f2 << (32-(off*8)))); bytes += 3 + off;