summaryrefslogtreecommitdiffstats
path: root/libavcodec/cdxl.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2013-10-27 10:02:26 +0100
committerAnton Khirnov <anton@khirnov.net>2013-10-31 20:14:14 +0100
commitd57e95cbd492e6f3a6bda0b724aeec44c200e833 (patch)
treebc7184425d0bcc11edf715b8626d5fb7da627dc0 /libavcodec/cdxl.c
parentf176e11cff74d1b6d01a1d3ef0b23410c7757a34 (diff)
downloadffmpeg-streaming-d57e95cbd492e6f3a6bda0b724aeec44c200e833.zip
ffmpeg-streaming-d57e95cbd492e6f3a6bda0b724aeec44c200e833.tar.gz
cdxl: stop using deprecated avcodec_set_dimensions
Diffstat (limited to 'libavcodec/cdxl.c')
-rw-r--r--libavcodec/cdxl.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/cdxl.c b/libavcodec/cdxl.c
index b198c4c..679bf60 100644
--- a/libavcodec/cdxl.c
+++ b/libavcodec/cdxl.c
@@ -237,10 +237,8 @@ static int cdxl_decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_PATCHWELCOME;
}
- if ((ret = av_image_check_size(w, h, 0, avctx)) < 0)
+ if ((ret = ff_set_dimensions(avctx, w, h)) < 0)
return ret;
- if (w != avctx->width || h != avctx->height)
- avcodec_set_dimensions(avctx, w, h);
aligned_width = FFALIGN(c->avctx->width, 16);
c->padded_bits = aligned_width - c->avctx->width;
OpenPOWER on IntegriCloud