Remove unused variable from ffv1 decoder.

This commit is contained in:
Carl Eugen Hoyos 2012-05-05 14:54:57 +02:00
parent c6758ac027
commit 23fba3ed5c
1 changed files with 1 additions and 1 deletions

View File

@ -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;