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:15 +0100 |
commit | 967cd6fafbf2fdec9cbe011296ad34a70212427e (patch) | |
tree | e494ed95e2b90f311bceeed3cfc68db4c258c798 | |
parent | d62b24a3f6bfd541704b258d8495eac58d8866dd (diff) | |
download | ffmpeg-967cd6fafbf2fdec9cbe011296ad34a70212427e.tar.gz |
libopenjpegdec: stop using deprecated avcodec_set_dimensions
-rw-r--r-- | libavcodec/libopenjpegdec.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/libavcodec/libopenjpegdec.c b/libavcodec/libopenjpegdec.c index 006270108d..d6fca33a85 100644 --- a/libavcodec/libopenjpegdec.c +++ b/libavcodec/libopenjpegdec.c @@ -33,6 +33,7 @@ #include "libavutil/pixfmt.h" #include "libavutil/opt.h" #include "avcodec.h" +#include "internal.h" #include "thread.h" #define JP2_SIG_TYPE 0x6A502020 @@ -315,13 +316,9 @@ static int libopenjpeg_decode_frame(AVCodecContext *avctx, height = (height + (1 << ctx->lowres) - 1) >> ctx->lowres; } - if ((ret = av_image_check_size(width, height, 0, avctx)) < 0) { - av_log(avctx, AV_LOG_ERROR, - "%dx%d dimension invalid.\n", width, height); + ret = ff_set_dimensions(avctx, width, height); + if (ret < 0) goto done; - } - - avcodec_set_dimensions(avctx, width, height); if (avctx->pix_fmt != AV_PIX_FMT_NONE) if (!libopenjpeg_matches_pix_fmt(image, avctx->pix_fmt)) |