[FFmpeg-cvslog] r9309 - trunk/libavcodec/qpeg.c
takis
subversion
Thu Jun 14 18:16:38 CEST 2007
Author: takis
Date: Thu Jun 14 18:16:37 2007
New Revision: 9309
Log:
Remove an unreferenced variable from qpeg_decode_inter().
Modified:
trunk/libavcodec/qpeg.c
Modified: trunk/libavcodec/qpeg.c
==============================================================================
--- trunk/libavcodec/qpeg.c (original)
+++ trunk/libavcodec/qpeg.c Thu Jun 14 18:16:37 2007
@@ -124,14 +124,12 @@ static void qpeg_decode_inter(uint8_t *s
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;
More information about the ffmpeg-cvslog
mailing list