mirror of https://git.ffmpeg.org/ffmpeg.git
Remove unused variable from ffv1 decoder.
This commit is contained in:
parent
c6758ac027
commit
23fba3ed5c
|
@ -1946,7 +1946,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
||||||
FFV1Context *f = avctx->priv_data;
|
FFV1Context *f = avctx->priv_data;
|
||||||
RangeCoder * const c= &f->slice_context[0]->c;
|
RangeCoder * const c= &f->slice_context[0]->c;
|
||||||
AVFrame * const p= &f->picture;
|
AVFrame * const p= &f->picture;
|
||||||
int bytes_read, i;
|
int i;
|
||||||
uint8_t keystate= 128;
|
uint8_t keystate= 128;
|
||||||
const uint8_t *buf_p;
|
const uint8_t *buf_p;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue