提交 8255535c 编写于 作者: A Anton Khirnov

gifdec: stop using deprecated avcodec_set_dimensions

上级 58c6239e
......@@ -292,9 +292,9 @@ static int gif_decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
return ret;
avctx->pix_fmt = AV_PIX_FMT_PAL8;
if ((ret = av_image_check_size(s->screen_width, s->screen_height, 0, avctx)) < 0)
if ((ret = ff_set_dimensions(avctx, s->screen_width, s->screen_height)) < 0)
return ret;
avcodec_set_dimensions(avctx, s->screen_width, s->screen_height);
if ((ret = ff_get_buffer(avctx, picture, 0)) < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册