OSDN Git Service

vble: remove unused variable len.
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 30 Nov 2011 22:28:48 +0000 (17:28 -0500)
committerRonald S. Bultje <rsbultje@gmail.com>
Thu, 1 Dec 2011 05:05:31 +0000 (21:05 -0800)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
libavcodec/vble.c

index 9589b53..839af2b 100644 (file)
@@ -91,7 +91,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset,
     AVFrame *pic = ctx->avctx->coded_frame;
     uint8_t *dst = pic->data[plane];
     uint8_t *val = ctx->val + offset;
-    uint8_t *len = ctx->len + offset;
     uint8_t a, b, c;
     int stride = pic->linesize[plane];
     int i, j;
@@ -116,7 +115,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset,
         }
         dst += stride;
         val += width;
-        len += width;
     }
 }