Commit 0dd704db authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Ronald S. Bultje

vble: remove unused variable len.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent c8f0e88b
...@@ -91,7 +91,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset, ...@@ -91,7 +91,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset,
AVFrame *pic = ctx->avctx->coded_frame; AVFrame *pic = ctx->avctx->coded_frame;
uint8_t *dst = pic->data[plane]; uint8_t *dst = pic->data[plane];
uint8_t *val = ctx->val + offset; uint8_t *val = ctx->val + offset;
uint8_t *len = ctx->len + offset;
uint8_t a, b, c; uint8_t a, b, c;
int stride = pic->linesize[plane]; int stride = pic->linesize[plane];
int i, j; int i, j;
...@@ -116,7 +115,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset, ...@@ -116,7 +115,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset,
} }
dst += stride; dst += stride;
val += width; val += width;
len += width;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment