webp: stop using deprecated avcodec_set_dimensions

This commit is contained in:
Anton Khirnov 2013-10-27 10:02:26 +01:00
parent 757d5e8ef9
commit 0a9e94bba8
1 changed files with 2 additions and 2 deletions

View File

@ -1085,10 +1085,10 @@ static int vp8_lossless_decode_frame(AVCodecContext *avctx, AVFrame *p,
s->width, w);
}
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)
return ret;
avcodec_set_dimensions(avctx, s->width, s->height);
s->has_alpha = get_bits1(&s->gb);