[Ffmpeg-cvslog] r7754 - trunk/libavcodec/cook.c

Måns Rullgård mru
Mon Jan 29 10:15:17 CET 2007


banan <subversion at mplayerhq.hu> writes:

> Author: banan
> Date: Mon Jan 29 09:58:03 2007
> New Revision: 7754
>
> Modified:
>    trunk/libavcodec/cook.c
>
> Log:
> Kill a warning and don't use modulus.
>
> Modified: trunk/libavcodec/cook.c
> ==============================================================================
> --- trunk/libavcodec/cook.c	(original)
> +++ trunk/libavcodec/cook.c	Mon Jan 29 09:58:03 2007
> @@ -303,7 +303,7 @@
>       *     (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);

That (int) cast isn't needed.

-- 
M?ns Rullg?rd
mru at inprovide.com




More information about the ffmpeg-cvslog mailing list