Commit f3d9b3be authored by melanson's avatar melanson

There is no reason to assign a variable to itself


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12405 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b779a2c9
......@@ -804,7 +804,6 @@ static void ipvideo_decode_opcodes(IpvideoContext *s)
s->line_inc = s->stride - 8;
s->upper_motion_limit_offset = (s->avctx->height - 8) * s->stride
+ s->avctx->width - 8;
s->dsp = s->dsp;
for (y = 0; y < (s->stride * s->avctx->height); y += s->stride * 8) {
for (x = y; x < y + s->avctx->width; x += 8) {
......
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