Commit 177bcc1a authored by Michael Niedermayer's avatar Michael Niedermayer

vble: remove unused variable len.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent dde0af2d
...@@ -94,7 +94,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset, ...@@ -94,7 +94,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;
...@@ -119,7 +118,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset, ...@@ -119,7 +118,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