From 7722ae35eb631763eab6539af3a14c77425c43e6 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Nov 2013 12:24:39 +0000 Subject: [PATCH] avcodec/c93: stop using deprecated avcodec_set_dimensions Signed-off-by: Paul B Mahol --- libavcodec/c93.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/c93.c b/libavcodec/c93.c index f25368b101..9ac804ef72 100644 --- a/libavcodec/c93.c +++ b/libavcodec/c93.c @@ -127,7 +127,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, uint8_t *out; int stride, ret, i, x, y, b, bt = 0; - avcodec_set_dimensions(avctx, WIDTH, HEIGHT); + if ((ret = ff_set_dimensions(avctx, WIDTH, HEIGHT)) < 0) + return ret; c93->currentpic ^= 1; -- 2.11.0