Commit c755870d authored by Anton Khirnov's avatar Anton Khirnov

sgidec: stop using deprecated avcodec_set_dimensions

parent 1d389e2a
......@@ -200,9 +200,9 @@ static int decode_frame(AVCodecContext *avctx,
return -1;
}
if (av_image_check_size(s->width, s->height, 0, avctx))
return -1;
avcodec_set_dimensions(avctx, s->width, s->height);
ret = ff_set_dimensions(avctx, s->width, s->height);
if (ret < 0)
return ret;
if (ff_get_buffer(avctx, p, 0) < 0) {
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed.\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment