[Ffmpeg-cvslog] r7260 - trunk/libavcodec/zmbvenc.c

Rich Felker dalias
Fri Dec 8 06:49:29 CET 2006


On Fri, Dec 08, 2006 at 06:28:01AM +0100, kostya wrote:
> Author: kostya
> Date: Fri Dec  8 06:28:00 2006
> New Revision: 7260
> 
> Modified:
>    trunk/libavcodec/zmbvenc.c
> 
> Log:
> Deobfuscate expression
> 
> Modified: trunk/libavcodec/zmbvenc.c
> ==============================================================================
> --- trunk/libavcodec/zmbvenc.c	(original)
> +++ trunk/libavcodec/zmbvenc.c	Fri Dec  8 06:28:00 2006
> @@ -119,7 +119,7 @@
>      int i, j;
>  
>      keyframe = !c->curfrm;
> -    c->curfrm = c->curfrm++;
> +    c->curfrm++;

These are not equivalent; which is correct? The former was a no-op
while the latter increments c->curfrm.

Rich





More information about the ffmpeg-cvslog mailing list