OSDN Git Service

There is no reason to assign a variable to itself
authorMike Melanson <mike@multimedia.cx>
Mon, 10 Mar 2008 03:07:15 +0000 (03:07 +0000)
committerMike Melanson <mike@multimedia.cx>
Mon, 10 Mar 2008 03:07:15 +0000 (03:07 +0000)
Originally committed as revision 12405 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/interplayvideo.c

index 3731fb2..3ca7774 100644 (file)
@@ -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) {