mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-13 18:55:08 +00:00
Remove an unreferenced variable from qpeg_decode_inter().
Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
71fd12253d
commit
233ed44543
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user