changeset 5142:16edc523f0c9 libavcodec

Remove an unreferenced variable from qpeg_decode_inter().
author takis
date Thu, 14 Jun 2007 16:16:37 +0000
parents 67953f3ef896
children 151f6f3a507b
files qpeg.c
diffstat 1 files changed, 0 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/qpeg.c	Thu Jun 14 09:32:04 2007 +0000
+++ b/qpeg.c	Thu Jun 14 16:16:37 2007 +0000
@@ -124,14 +124,12 @@
     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;