From c6b8a7dbb4b624d0e46e05131d605266fd932aca Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 27 Oct 2013 10:02:26 +0100 Subject: eamad: stop using deprecated avcodec_set_dimensions --- libavcodec/eamad.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libavcodec/eamad.c') diff --git a/libavcodec/eamad.c b/libavcodec/eamad.c index 8d6aa626a1..5de28c72da 100644 --- a/libavcodec/eamad.c +++ b/libavcodec/eamad.c @@ -250,10 +250,9 @@ static int decode_frame(AVCodecContext *avctx, buf += 16; if (avctx->width != width || avctx->height != height) { - if (av_image_check_size(width, height, 0, avctx) < 0) - return -1; - avcodec_set_dimensions(avctx, width, height); av_frame_unref(&s->last_frame); + if ((ret = ff_set_dimensions(avctx, width, height)) < 0) + return ret; } if ((ret = ff_get_buffer(avctx, frame, AV_GET_BUFFER_FLAG_REF)) < 0) { -- cgit v1.2.3