From 233ed44543c8beee4e48cb895404f4305dd5eabb Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 14 Jun 2007 16:16:37 +0000 Subject: [PATCH] Remove an unreferenced variable from qpeg_decode_inter(). Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/qpeg.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index d995bc3b7..44391d185 100644 --- a/libavcodec/qpeg.c +++ b/libavcodec/qpeg.c @@ -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; -- 2.11.0