From 233ed44543c8beee4e48cb895404f4305dd5eabb Mon Sep 17 00:00:00 2001 From: Panagiotis Issaris Date: Thu, 14 Jun 2007 16:16:37 +0000 Subject: 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(-) (limited to 'libavcodec/qpeg.c') diff --git a/libavcodec/qpeg.c b/libavcodec/qpeg.c index d995bc3b72..44391d185a 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; -- cgit v1.2.3