diff options
author | Mike Melanson <mike@multimedia.cx> | 2008-03-10 03:07:15 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2008-03-10 03:07:15 +0000 |
commit | d61af67aa14222093f29adf6bed31ae5ef6bbbb1 (patch) | |
tree | f95b1bcb43cbd7e5f5f4377a64ee2cfc960a246e /libavcodec/interplayvideo.c | |
parent | b847847a0c237f03a567057902e89b0a65ea7f5b (diff) | |
download | ffmpeg-d61af67aa14222093f29adf6bed31ae5ef6bbbb1.tar.gz |
There is no reason to assign a variable to itself
Originally committed as revision 12405 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/interplayvideo.c')
-rw-r--r-- | libavcodec/interplayvideo.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/interplayvideo.c b/libavcodec/interplayvideo.c index 3731fb2757..3ca7774e0f 100644 --- a/libavcodec/interplayvideo.c +++ b/libavcodec/interplayvideo.c @@ -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) { |