From 23fba3ed5c75aded6768259a711bdc74d9ddbe02 Mon Sep 17 00:00:00 2001 From: Carl Eugen Hoyos Date: Sat, 5 May 2012 14:54:57 +0200 Subject: [PATCH] Remove unused variable from ffv1 decoder. --- libavcodec/ffv1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 1f79c29a85..f418d49a7e 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -1946,7 +1946,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac FFV1Context *f = avctx->priv_data; RangeCoder * const c= &f->slice_context[0]->c; AVFrame * const p= &f->picture; - int bytes_read, i; + int i; uint8_t keystate= 128; const uint8_t *buf_p;