On Thu, Jun 30, 2011 at 10:49:48AM +0100, Mans Rullgard wrote:
> Signed-off-by: Mans Rullgard <[email protected]>
> ---
> libavutil/adler32.c | 28 +++++++++++++++++-----------
> 1 files changed, 17 insertions(+), 11 deletions(-)
OK
> --- a/libavutil/adler32.c
> +++ b/libavutil/adler32.c
> @@ -26,24 +26,28 @@
> - while(len>16 && s2 < (1U<<31)){
> - DO16(buf); len-=16;
> -#endif
> + while (len > 16 && s2 < (1U << 31)) {
> + DO16(buf);
> + len -= 16;
> }
> +#endif
> DO1(buf); len--;
That line could be broken as well while you're at it.
Diego
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel