mirror of https://git.ffmpeg.org/ffmpeg.git
gif: do not set avctx->coded_frame
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
19436308b4
commit
bd03f99d05
|
@ -217,7 +217,6 @@ static av_cold int gif_encode_init(AVCodecContext *avctx)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
avctx->coded_frame = &s->picture;
|
|
||||||
s->lzw = av_mallocz(ff_lzw_encode_state_size);
|
s->lzw = av_mallocz(ff_lzw_encode_state_size);
|
||||||
s->buf = av_malloc(avctx->width*avctx->height*2);
|
s->buf = av_malloc(avctx->width*avctx->height*2);
|
||||||
s->tmpl = av_malloc(avctx->width);
|
s->tmpl = av_malloc(avctx->width);
|
||||||
|
|
Loading…
Reference in New Issue