diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-11-30 17:28:48 -0500 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-11-30 21:05:31 -0800 |
commit | 0dd704dbd4d77614952c2aebf631451d2ed830c5 (patch) | |
tree | 2b78f4d20cb7d4b20721ac57a6a990c6e7cf7fb5 | |
parent | c8f0e88b205208da0e74f9345d4c4eb6d725774b (diff) | |
download | ffmpeg-0dd704dbd4d77614952c2aebf631451d2ed830c5.tar.gz |
vble: remove unused variable len.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
-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 9589b535ec..839af2bfdc 100644 --- a/libavcodec/vble.c +++ b/libavcodec/vble.c @@ -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; } } |