diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-12 02:06:56 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-11-12 03:08:49 +0100 |
commit | 177bcc1ad9fe6da8400a8c2297ee1b1bfa2c999a (patch) | |
tree | 0bb3baee73adaa5e474a12457d8cb295942a9489 /libavcodec | |
parent | dde0af2df1caffb9e33855c08fc691dbbbbc72b3 (diff) | |
download | ffmpeg-177bcc1ad9fe6da8400a8c2297ee1b1bfa2c999a.tar.gz |
vble: remove unused variable len.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/vble.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/vble.c b/libavcodec/vble.c index 1790a39e17..ae4645b779 100644 --- a/libavcodec/vble.c +++ b/libavcodec/vble.c @@ -94,7 +94,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; @@ -119,7 +118,6 @@ static void vble_restore_plane(VBLEContext *ctx, int plane, int offset, } dst += stride; val += width; - len += width; } } |