summaryrefslogtreecommitdiff
path: root/libavcodec/qpeg.c
diff options
context:
space:
mode:
authorPanagiotis Issaris <takis.issaris@uhasselt.be>2007-06-14 16:16:37 +0000
committerPanagiotis Issaris <takis.issaris@uhasselt.be>2007-06-14 16:16:37 +0000
commit233ed44543c8beee4e48cb895404f4305dd5eabb (patch)
treebf420ee2ece8554c2af9622ccb9fafc6f3e324e8 /libavcodec/qpeg.c
parent71fd12253d2688cd116d04a3234c785359acc338 (diff)
Remove an unreferenced variable from qpeg_decode_inter().
Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/qpeg.c')
-rw-r--r--libavcodec/qpeg.c2
1 files changed, 0 insertions, 2 deletions
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;