Remove an unreferenced variable from qpeg_decode_inter().
authorPanagiotis Issaris <takis.issaris@uhasselt.be>
Thu, 14 Jun 2007 16:16:37 +0000 (16:16 +0000)
committerPanagiotis Issaris <takis.issaris@uhasselt.be>
Thu, 14 Jun 2007 16:16:37 +0000 (16:16 +0000)
Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/qpeg.c

index d995bc3..44391d1 100644 (file)
@@ -124,14 +124,12 @@ static void qpeg_decode_inter(uint8_t *src, uint8_t *dst, int size,
     int code;
     int filled = 0;
     int orig_height;
-    uint8_t *blkdata;
 
     /* copy prev frame */
     for(i = 0; i < height; i++)
         memcpy(refdata + (i * width), dst + (i * stride), width);
 
     orig_height = height;
-    blkdata = src - 0x86;
     height--;
     dst = dst + height * stride;