Commit 6e1d7263 authored by takis's avatar takis

Remove an unreferenced variable from qpeg_decode_inter().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9309 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent dc1d743e
...@@ -124,14 +124,12 @@ static void qpeg_decode_inter(uint8_t *src, uint8_t *dst, int size, ...@@ -124,14 +124,12 @@ static void qpeg_decode_inter(uint8_t *src, uint8_t *dst, int size,
int code; int code;
int filled = 0; int filled = 0;
int orig_height; int orig_height;
uint8_t *blkdata;
/* copy prev frame */ /* copy prev frame */
for(i = 0; i < height; i++) for(i = 0; i < height; i++)
memcpy(refdata + (i * width), dst + (i * stride), width); memcpy(refdata + (i * width), dst + (i * stride), width);
orig_height = height; orig_height = height;
blkdata = src - 0x86;
height--; height--;
dst = dst + height * stride; 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