Commit a4b94019 authored by Kostya Shishkov's avatar Kostya Shishkov

Deobfuscate expression

Originally committed as revision 7260 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3dd52c5a
...@@ -119,7 +119,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void ...@@ -119,7 +119,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *buf, int buf_size, void
int i, j; int i, j;
keyframe = !c->curfrm; keyframe = !c->curfrm;
c->curfrm = c->curfrm++; c->curfrm++;
if(c->curfrm == c->keyint) if(c->curfrm == c->keyint)
c->curfrm = 0; c->curfrm = 0;
*p = *pict; *p = *pict;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment