Browse Source

Remove an unreferenced variable from qpeg_decode_inter().

Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Panagiotis Issaris 18 years ago
parent
commit
233ed44543
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavcodec/qpeg.c

+ 0
- 2
libavcodec/qpeg.c View File

@@ -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;




Loading…
Cancel
Save