Commit 233ed445 authored by Panagiotis Issaris's avatar Panagiotis Issaris

Remove an unreferenced variable from qpeg_decode_inter().

Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 71fd1225
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment