mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
sgidec: stop using deprecated avcodec_set_dimensions
This commit is contained in:
parent
1d389e2a80
commit
c755870d52
@ -200,9 +200,9 @@ static int decode_frame(AVCodecContext *avctx,
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (av_image_check_size(s->width, s->height, 0, avctx))
|
ret = ff_set_dimensions(avctx, s->width, s->height);
|
||||||
return -1;
|
if (ret < 0)
|
||||||
avcodec_set_dimensions(avctx, s->width, s->height);
|
return ret;
|
||||||
|
|
||||||
if (ff_get_buffer(avctx, p, 0) < 0) {
|
if (ff_get_buffer(avctx, p, 0) < 0) {
|
||||||
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed.\n");
|
av_log(avctx, AV_LOG_ERROR, "get_buffer() failed.\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user