mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
webp: stop using deprecated avcodec_set_dimensions
This commit is contained in:
parent
757d5e8ef9
commit
0a9e94bba8
@ -1085,10 +1085,10 @@ static int vp8_lossless_decode_frame(AVCodecContext *avctx, AVFrame *p,
|
|||||||
s->width, w);
|
s->width, w);
|
||||||
}
|
}
|
||||||
s->height = h;
|
s->height = h;
|
||||||
ret = av_image_check_size(s->width, s->height, 0, avctx);
|
|
||||||
|
ret = ff_set_dimensions(avctx, s->width, s->height);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
avcodec_set_dimensions(avctx, s->width, s->height);
|
|
||||||
|
|
||||||
s->has_alpha = get_bits1(&s->gb);
|
s->has_alpha = get_bits1(&s->gb);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user