diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-05 14:54:57 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-05-05 14:54:57 +0200 |
commit | 23fba3ed5c75aded6768259a711bdc74d9ddbe02 (patch) | |
tree | 6951f76e2c8be7c2b4e20aca38b516b0eac46ac7 /libavcodec/ffv1.c | |
parent | c6758ac027e5c5444f640498ee07658c1dbc8842 (diff) | |
download | ffmpeg-23fba3ed5c75aded6768259a711bdc74d9ddbe02.tar.gz |
Remove unused variable from ffv1 decoder.
Diffstat (limited to 'libavcodec/ffv1.c')
-rw-r--r-- | libavcodec/ffv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |