mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
zerocodec: remove an unused variable.
This commit is contained in:
parent
8adfacff5c
commit
261f0b14ed
@ -25,7 +25,6 @@
|
||||
typedef struct {
|
||||
AVFrame previous_frame;
|
||||
z_stream zstream;
|
||||
int size;
|
||||
} ZeroCodecContext;
|
||||
|
||||
static int zerocodec_decode_frame(AVCodecContext *avctx, void *data,
|
||||
@ -136,9 +135,6 @@ static av_cold int zerocodec_decode_init(AVCodecContext *avctx)
|
||||
avctx->pix_fmt = AV_PIX_FMT_UYVY422;
|
||||
avctx->bits_per_raw_sample = 8;
|
||||
|
||||
zc->size = avpicture_get_size(avctx->pix_fmt,
|
||||
avctx->width, avctx->height);
|
||||
|
||||
zstream->zalloc = Z_NULL;
|
||||
zstream->zfree = Z_NULL;
|
||||
zstream->opaque = Z_NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user