diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-10-27 10:02:26 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-31 20:14:16 +0100 |
commit | c265b8bb7638546919465e3585441b1d40c4b13d (patch) | |
tree | 38e413e814b8bfb672ba6652b91538cf1cecff9c | |
parent | eed5a478ba1bd41b01b1144959ac5f1889238b43 (diff) | |
download | ffmpeg-c265b8bb7638546919465e3585441b1d40c4b13d.tar.gz |
tiff: stop using deprecated avcodec_set_dimensions
-rw-r--r-- | libavcodec/tiff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/tiff.c b/libavcodec/tiff.c index 735eafe721..7fb0e7a3a6 100644 --- a/libavcodec/tiff.c +++ b/libavcodec/tiff.c @@ -296,9 +296,9 @@ static int init_image(TiffContext *s, AVFrame *frame) return AVERROR_INVALIDDATA; } if (s->width != s->avctx->width || s->height != s->avctx->height) { - if ((ret = av_image_check_size(s->width, s->height, 0, s->avctx)) < 0) + ret = ff_set_dimensions(s->avctx, s->width, s->height); + if (ret < 0) return ret; - avcodec_set_dimensions(s->avctx, s->width, s->height); } if ((ret = ff_get_buffer(s->avctx, frame, 0)) < 0) { av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); |