diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-06-14 16:16:37 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2007-06-14 16:16:37 +0000 |
commit | 233ed44543c8beee4e48cb895404f4305dd5eabb (patch) | |
tree | bf420ee2ece8554c2af9622ccb9fafc6f3e324e8 | |
parent | 71fd12253d2688cd116d04a3234c785359acc338 (diff) | |
download | ffmpeg-233ed44543c8beee4e48cb895404f4305dd5eabb.tar.gz |
Remove an unreferenced variable from qpeg_decode_inter().
Originally committed as revision 9309 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/qpeg.c | 2 |
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; |