# HG changeset patch # User stefano # Date 1281087424 0 # Node ID 914f484bb476f8fdd02223cc6e7a3669c633843a # Parent 5dffb531b1ccbf73368559e1e1ed5cf987c032e7 Remove use of the deprecated function avcodec_check_dimensions(), use av_check_image_size() instead. diff -r 5dffb531b1cc -r 914f484bb476 bink.c --- a/bink.c Fri Aug 06 09:36:45 2010 +0000 +++ b/bink.c Fri Aug 06 09:37:04 2010 +0000 @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "binkdata.h" @@ -971,7 +972,7 @@ c->pic.data[0] = NULL; - if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { + if (av_check_image_size(avctx->width, avctx->height, 0, avctx) < 0) { return 1; } diff -r 5dffb531b1cc -r 914f484bb476 dirac.c --- a/dirac.c Fri Aug 06 09:36:45 2010 +0000 +++ b/dirac.c Fri Aug 06 09:37:04 2010 +0000 @@ -25,6 +25,7 @@ * @author Marco Gerards */ +#include "libavcore/imgutils.h" #include "dirac.h" #include "avcodec.h" #include "golomb.h" @@ -268,7 +269,7 @@ if (parse_source_parameters(avctx, gb, source)) return -1; - if (avcodec_check_dimensions(avctx, source->width, source->height)) + if (av_check_image_size(source->width, source->height, 0, avctx)) return -1; avcodec_set_dimensions(avctx, source->width, source->height); diff -r 5dffb531b1cc -r 914f484bb476 dnxhddec.c --- a/dnxhddec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/dnxhddec.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ //#define TRACE //#define DEBUG +#include "libavcore/imgutils.h" #include "avcodec.h" #include "get_bits.h" #include "dnxhddata.h" @@ -305,7 +306,7 @@ } avctx->pix_fmt = PIX_FMT_YUV422P; - if (avcodec_check_dimensions(avctx, ctx->width, ctx->height)) + if (av_check_image_size(ctx->width, ctx->height, 0, avctx)) return -1; avcodec_set_dimensions(avctx, ctx->width, ctx->height); diff -r 5dffb531b1cc -r 914f484bb476 dpx.c --- a/dpx.c Fri Aug 06 09:36:45 2010 +0000 +++ b/dpx.c Fri Aug 06 09:37:04 2010 +0000 @@ -20,6 +20,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "bytestream.h" #include "avcodec.h" @@ -139,7 +140,7 @@ if (s->picture.data[0]) avctx->release_buffer(avctx, &s->picture); - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 eacmv.c --- a/eacmv.c Fri Aug 06 09:36:45 2010 +0000 +++ b/eacmv.c Fri Aug 06 09:37:04 2010 +0000 @@ -29,6 +29,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" typedef struct CmvContext { @@ -156,7 +157,7 @@ return buf_size; } - if (avcodec_check_dimensions(s->avctx, s->width, s->height)) + if (av_check_image_size(s->width, s->height, 0, s->avctx)) return -1; /* shuffle */ diff -r 5dffb531b1cc -r 914f484bb476 eamad.c --- a/eamad.c Fri Aug 06 09:36:45 2010 +0000 +++ b/eamad.c Fri Aug 06 09:37:04 2010 +0000 @@ -34,6 +34,7 @@ #include "aandcttab.h" #include "mpeg12.h" #include "mpeg12data.h" +#include "libavcore/imgutils.h" #define EA_PREAMBLE_SIZE 8 #define MADk_TAG MKTAG('M', 'A', 'D', 'k') /* MAD i-frame */ @@ -260,7 +261,7 @@ buf += 16; if (avctx->width != s->width || avctx->height != s->height) { - if (avcodec_check_dimensions(avctx, s->width, s->height) < 0) + if (av_check_image_size(s->width, s->height, 0, avctx) < 0) return -1; avcodec_set_dimensions(avctx, s->width, s->height); if (t->frame.data[0]) diff -r 5dffb531b1cc -r 914f484bb476 eatgv.c --- a/eatgv.c Fri Aug 06 09:36:45 2010 +0000 +++ b/eatgv.c Fri Aug 06 09:37:04 2010 +0000 @@ -32,6 +32,7 @@ #define ALT_BITSTREAM_READER_LE #include "get_bits.h" #include "libavutil/lzo.h" +#include "libavcore/imgutils.h" #define EA_PREAMBLE_SIZE 8 #define kVGT_TAG MKTAG('k', 'V', 'G', 'T') @@ -275,7 +276,7 @@ } } - if (avcodec_check_dimensions(avctx, s->width, s->height)) + if (av_check_image_size(s->width, s->height, 0, avctx)) return -1; /* shuffle */ diff -r 5dffb531b1cc -r 914f484bb476 flvdec.c --- a/flvdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/flvdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -20,6 +20,7 @@ #include "mpegvideo.h" #include "h263.h" #include "flv.h" +#include "libavcore/imgutils.h" void ff_flv2_decode_ac_esc(GetBitContext *gb, int *level, int *run, int *last){ int is11 = get_bits1(gb); @@ -82,7 +83,7 @@ width = height = 0; break; } - if(avcodec_check_dimensions(s->avctx, width, height)) + if(av_check_image_size(width, height, 0, s->avctx)) return -1; s->width = width; s->height = height; diff -r 5dffb531b1cc -r 914f484bb476 gifdec.c --- a/gifdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/gifdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ //#define DEBUG +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "lzw.h" @@ -296,7 +297,7 @@ return -1; avctx->pix_fmt = PIX_FMT_PAL8; - if (avcodec_check_dimensions(avctx, s->screen_width, s->screen_height)) + if (av_check_image_size(s->screen_width, s->screen_height, 0, avctx)) return -1; avcodec_set_dimensions(avctx, s->screen_width, s->screen_height); diff -r 5dffb531b1cc -r 914f484bb476 h264_ps.c --- a/h264_ps.c Fri Aug 06 09:36:45 2010 +0000 +++ b/h264_ps.c Fri Aug 06 09:37:04 2010 +0000 @@ -25,6 +25,7 @@ * @author Michael Niedermayer */ +#include "libavcore/imgutils.h" #include "internal.h" #include "dsputil.h" #include "avcodec.h" @@ -341,7 +342,7 @@ sps->mb_width = get_ue_golomb(&s->gb) + 1; sps->mb_height= get_ue_golomb(&s->gb) + 1; if((unsigned)sps->mb_width >= INT_MAX/16 || (unsigned)sps->mb_height >= INT_MAX/16 || - avcodec_check_dimensions(NULL, 16*sps->mb_width, 16*sps->mb_height)){ + av_check_image_size(16*sps->mb_width, 16*sps->mb_height, 0, h->s.avctx)){ av_log(h->s.avctx, AV_LOG_ERROR, "mb_width/height overflow\n"); goto fail; } diff -r 5dffb531b1cc -r 914f484bb476 iff.c --- a/iff.c Fri Aug 06 09:36:45 2010 +0000 +++ b/iff.c Fri Aug 06 09:37:04 2010 +0000 @@ -25,6 +25,7 @@ * IFF PBM/ILBM bitmap decoder */ +#include "libavcore/imgutils.h" #include "bytestream.h" #include "avcodec.h" #include "get_bits.h" @@ -160,7 +161,7 @@ return AVERROR_INVALIDDATA; } - if ((err = avcodec_check_dimensions(avctx, avctx->width, avctx->height))) + if ((err = av_check_image_size(avctx->width, avctx->height, 0, avctx))) return err; s->planesize = FFALIGN(avctx->width, 16) >> 3; // Align plane size in bits to word-boundary s->planebuf = av_malloc(s->planesize + FF_INPUT_BUFFER_PADDING_SIZE); diff -r 5dffb531b1cc -r 914f484bb476 imgconvert.c --- a/imgconvert.c Fri Aug 06 09:36:45 2010 +0000 +++ b/imgconvert.c Fri Aug 06 09:37:04 2010 +0000 @@ -515,7 +515,7 @@ enum PixelFormat pix_fmt, int width, int height) { - if(avcodec_check_dimensions(NULL, width, height)) + if(av_check_image_size(width, height, 0, NULL)) return -1; if (av_fill_image_linesizes(picture->linesize, pix_fmt, width)) @@ -597,7 +597,7 @@ int avpicture_get_size(enum PixelFormat pix_fmt, int width, int height) { AVPicture dummy_pict; - if(avcodec_check_dimensions(NULL, width, height)) + if(av_check_image_size(width, height, 0, NULL)) return -1; switch (pix_fmt) { case PIX_FMT_RGB8: diff -r 5dffb531b1cc -r 914f484bb476 indeo3.c --- a/indeo3.c Fri Aug 06 09:36:45 2010 +0000 +++ b/indeo3.c Fri Aug 06 09:37:04 2010 +0000 @@ -23,6 +23,7 @@ #include #include +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "bytestream.h" @@ -995,7 +996,7 @@ image_height = bytestream_get_le16(&buf_pos); image_width = bytestream_get_le16(&buf_pos); - if(avcodec_check_dimensions(avctx, image_width, image_height)) + if(av_check_image_size(image_width, image_height, 0, avctx)) return -1; if (image_width != avctx->width || image_height != avctx->height) { int ret; diff -r 5dffb531b1cc -r 914f484bb476 kgv1dec.c --- a/kgv1dec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/kgv1dec.c Fri Aug 06 09:37:04 2010 +0000 @@ -25,6 +25,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" typedef struct { @@ -50,7 +51,7 @@ h = (buf[1] + 1) * 8; buf += 2; - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) diff -r 5dffb531b1cc -r 914f484bb476 libdiracdec.c --- a/libdiracdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/libdiracdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -105,8 +105,8 @@ /* tell FFmpeg about sequence details */ dirac_sourceparams_t *src_params = &p_dirac_params->p_decoder->src_params; - if (avcodec_check_dimensions(avccontext, src_params->width, - src_params->height) < 0) { + if (av_check_image_size(src_params->width, src_params->height, + 0, avccontext) < 0) { av_log(avccontext, AV_LOG_ERROR, "Invalid dimensions (%dx%d)\n", src_params->width, src_params->height); avccontext->height = avccontext->width = 0; diff -r 5dffb531b1cc -r 914f484bb476 libopenjpeg.c --- a/libopenjpeg.c Fri Aug 06 09:36:45 2010 +0000 +++ b/libopenjpeg.c Fri Aug 06 09:37:04 2010 +0000 @@ -113,7 +113,7 @@ } width = image->comps[0].w << avctx->lowres; height = image->comps[0].h << avctx->lowres; - if(avcodec_check_dimensions(avctx, width, height) < 0) { + if(av_check_image_size(width, height, 0, avctx) < 0) { av_log(avctx, AV_LOG_ERROR, "%dx%d dimension invalid.\n", width, height); goto done; } diff -r 5dffb531b1cc -r 914f484bb476 libschroedingerdec.c --- a/libschroedingerdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/libschroedingerdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -169,8 +169,8 @@ p_schro_params->format = schro_decoder_get_video_format(decoder); /* Tell FFmpeg about sequence details. */ - if (avcodec_check_dimensions(avccontext, p_schro_params->format->width, - p_schro_params->format->height) < 0) { + if (av_check_image_size(p_schro_params->format->width, p_schro_params->format->height, + 0, avccontext) < 0) { av_log(avccontext, AV_LOG_ERROR, "invalid dimensions (%dx%d)\n", p_schro_params->format->width, p_schro_params->format->height); avccontext->height = avccontext->width = 0; diff -r 5dffb531b1cc -r 914f484bb476 libvpxdec.c --- a/libvpxdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/libvpxdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -86,7 +86,7 @@ if ((int) img->d_w != avctx->width || (int) img->d_h != avctx->height) { av_log(avctx, AV_LOG_INFO, "dimension change! %dx%d -> %dx%d\n", avctx->width, avctx->height, img->d_w, img->d_h); - if (avcodec_check_dimensions(avctx, img->d_w, img->d_h)) + if (av_check_image_size(img->d_w, img->d_h, 0, avctx)) return AVERROR_INVALIDDATA; avcodec_set_dimensions(avctx, img->d_w, img->d_h); } diff -r 5dffb531b1cc -r 914f484bb476 mjpegdec.c --- a/mjpegdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/mjpegdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -33,6 +33,7 @@ //#define DEBUG #include +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "mjpeg.h" @@ -218,7 +219,7 @@ height= s->height; av_log(s->avctx, AV_LOG_DEBUG, "sof0: picture: %dx%d\n", width, height); - if(avcodec_check_dimensions(s->avctx, width, height)) + if(av_check_image_size(width, height, 0, s->avctx)) return -1; nb_components = get_bits(&s->gb, 8); diff -r 5dffb531b1cc -r 914f484bb476 mpegvideo.c --- a/mpegvideo.c Fri Aug 06 09:36:45 2010 +0000 +++ b/mpegvideo.c Fri Aug 06 09:37:04 2010 +0000 @@ -28,6 +28,7 @@ */ #include "libavutil/intmath.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "internal.h" @@ -510,7 +511,7 @@ return -1; } - if((s->width || s->height) && avcodec_check_dimensions(s->avctx, s->width, s->height)) + if((s->width || s->height) && av_check_image_size(s->width, s->height, 0, s->avctx)) return -1; dsputil_init(&s->dsp, s->avctx); diff -r 5dffb531b1cc -r 914f484bb476 nuv.c --- a/nuv.c Fri Aug 06 09:36:45 2010 +0000 +++ b/nuv.c Fri Aug 06 09:37:04 2010 +0000 @@ -23,6 +23,7 @@ #include "libavutil/bswap.h" #include "libavutil/lzo.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "rtjpeg.h" @@ -111,7 +112,7 @@ if (quality >= 0) get_quant_quality(c, quality); if (width != c->width || height != c->height) { - if (avcodec_check_dimensions(avctx, height, width) < 0) + if (av_check_image_size(height, width, 0, avctx) < 0) return 0; avctx->width = c->width = width; avctx->height = c->height = height; diff -r 5dffb531b1cc -r 914f484bb476 pcx.c --- a/pcx.c Fri Aug 06 09:36:45 2010 +0000 +++ b/pcx.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "get_bits.h" @@ -142,7 +143,7 @@ if (p->data[0]) avctx->release_buffer(avctx, p); - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 pictordec.c --- a/pictordec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/pictordec.c Fri Aug 06 09:37:04 2010 +0000 @@ -24,6 +24,7 @@ * Pictor/PC Paint decoder */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "cga_data.h" @@ -135,7 +136,7 @@ avctx->pix_fmt = PIX_FMT_PAL8; if (s->width != avctx->width && s->height != avctx->height) { - if (avcodec_check_dimensions(avctx, s->width, s->height) < 0) + if (av_check_image_size(s->width, s->height, 0, avctx) < 0) return -1; avcodec_set_dimensions(avctx, s->width, s->height); if (s->frame.data[0]) diff -r 5dffb531b1cc -r 914f484bb476 pngdec.c --- a/pngdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/pngdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -18,6 +18,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "png.h" @@ -441,7 +442,7 @@ goto fail; s->width = bytestream_get_be32(&s->bytestream); s->height = bytestream_get_be32(&s->bytestream); - if(avcodec_check_dimensions(avctx, s->width, s->height)){ + if(av_check_image_size(s->width, s->height, 0, avctx)){ s->width= s->height= 0; goto fail; } diff -r 5dffb531b1cc -r 914f484bb476 pnm.c --- a/pnm.c Fri Aug 06 09:36:45 2010 +0000 +++ b/pnm.c Fri Aug 06 09:37:04 2010 +0000 @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "pnm.h" @@ -101,7 +102,7 @@ } } /* check that all tags are present */ - if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || avcodec_check_dimensions(avctx, w, h)) + if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || av_check_image_size(w, h, 0, avctx)) return -1; avctx->width = w; @@ -134,7 +135,7 @@ return -1; pnm_get(s, buf1, sizeof(buf1)); avctx->height = atoi(buf1); - if(avcodec_check_dimensions(avctx, avctx->width, avctx->height)) + if(av_check_image_size(avctx->width, avctx->height, 0, avctx)) return -1; if (avctx->pix_fmt != PIX_FMT_MONOWHITE) { pnm_get(s, buf1, sizeof(buf1)); diff -r 5dffb531b1cc -r 914f484bb476 ptx.c --- a/ptx.c Fri Aug 06 09:36:45 2010 +0000 +++ b/ptx.c Fri Aug 06 09:37:04 2010 +0000 @@ -20,6 +20,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" typedef struct PTXContext { @@ -64,7 +65,7 @@ if (p->data[0]) avctx->release_buffer(avctx, p); - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 qtrleenc.c --- a/qtrleenc.c Fri Aug 06 09:36:45 2010 +0000 +++ b/qtrleenc.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" @@ -62,7 +63,7 @@ { QtrleEncContext *s = avctx->priv_data; - if (avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { + if (av_check_image_size(avctx->width, avctx->height, 0, avctx) < 0) { return -1; } s->avctx=avctx; diff -r 5dffb531b1cc -r 914f484bb476 rv10.c --- a/rv10.c Fri Aug 06 09:36:45 2010 +0000 +++ b/rv10.c Fri Aug 06 09:37:04 2010 +0000 @@ -25,6 +25,7 @@ * RV10/RV20 decoder */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "mpegvideo.h" @@ -369,7 +370,7 @@ } if(new_w != s->width || new_h != s->height){ av_log(s->avctx, AV_LOG_DEBUG, "attempting to change resolution to %dx%d\n", new_w, new_h); - if (avcodec_check_dimensions(s->avctx, new_w, new_h) < 0) + if (av_check_image_size(new_w, new_h, 0, s->avctx) < 0) return -1; MPV_common_end(s); avcodec_set_dimensions(s->avctx, new_w, new_h); diff -r 5dffb531b1cc -r 914f484bb476 rv40.c --- a/rv40.c Fri Aug 06 09:36:45 2010 +0000 +++ b/rv40.c Fri Aug 06 09:37:04 2010 +0000 @@ -24,6 +24,8 @@ * RV40 decoder */ +#include "libavcore/imgutils.h" + #include "avcodec.h" #include "dsputil.h" #include "mpegvideo.h" @@ -142,7 +144,7 @@ si->pts = get_bits(gb, 13); if(!si->type || !get_bits1(gb)) rv40_parse_picture_size(gb, &w, &h); - if(avcodec_check_dimensions(r->s.avctx, w, h) < 0) + if(av_check_image_size(w, h, 0, r->s.avctx) < 0) return -1; si->width = w; si->height = h; diff -r 5dffb531b1cc -r 914f484bb476 sgidec.c --- a/sgidec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/sgidec.c Fri Aug 06 09:37:04 2010 +0000 @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "bytestream.h" #include "sgi.h" @@ -201,7 +202,7 @@ return -1; } - if (avcodec_check_dimensions(avctx, s->width, s->height)) + if (av_check_image_size(s->width, s->height, 0, avctx)) return -1; avcodec_set_dimensions(avctx, s->width, s->height); diff -r 5dffb531b1cc -r 914f484bb476 sunrast.c --- a/sunrast.c Fri Aug 06 09:36:45 2010 +0000 +++ b/sunrast.c Fri Aug 06 09:37:04 2010 +0000 @@ -20,6 +20,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #define RT_OLD 0 @@ -97,7 +98,7 @@ if (p->data[0]) avctx->release_buffer(avctx, p); - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 targa.c --- a/targa.c Fri Aug 06 09:36:45 2010 +0000 +++ b/targa.c Fri Aug 06 09:37:04 2010 +0000 @@ -20,6 +20,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" enum TargaCompr{ @@ -145,7 +146,7 @@ if(s->picture.data[0]) avctx->release_buffer(avctx, &s->picture); - if(avcodec_check_dimensions(avctx, w, h)) + if(av_check_image_size(w, h, 0, avctx)) return -1; if(w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 tiff.c --- a/tiff.c Fri Aug 06 09:36:45 2010 +0000 +++ b/tiff.c Fri Aug 06 09:37:04 2010 +0000 @@ -33,6 +33,7 @@ #include "faxcompr.h" #include "libavutil/common.h" #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" typedef struct TiffContext { AVCodecContext *avctx; @@ -305,7 +306,7 @@ return -1; } if(s->width != s->avctx->width || s->height != s->avctx->height){ - if(avcodec_check_dimensions(s->avctx, s->width, s->height)) + if(av_check_image_size(s->width, s->height, 0, s->avctx)) return -1; avcodec_set_dimensions(s->avctx, s->width, s->height); } @@ -507,7 +508,7 @@ s->bpp = 1; avctx->pix_fmt = PIX_FMT_MONOBLACK; if(s->width != s->avctx->width || s->height != s->avctx->height){ - if(avcodec_check_dimensions(s->avctx, s->width, s->height)) + if(av_check_image_size(s->width, s->height, 0, s->avctx)) return -1; avcodec_set_dimensions(s->avctx, s->width, s->height); } diff -r 5dffb531b1cc -r 914f484bb476 txd.c --- a/txd.c Fri Aug 06 09:36:45 2010 +0000 +++ b/txd.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #include "s3tc.h" @@ -79,7 +80,7 @@ if (p->data[0]) avctx->release_buffer(avctx, p); - if (avcodec_check_dimensions(avctx, w, h)) + if (av_check_image_size(w, h, 0, avctx)) return -1; if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); diff -r 5dffb531b1cc -r 914f484bb476 utils.c --- a/utils.c Fri Aug 06 09:36:45 2010 +0000 +++ b/utils.c Fri Aug 06 09:37:04 2010 +0000 @@ -235,7 +235,7 @@ return -1; } - if(avcodec_check_dimensions(s,w,h)) + if(av_check_image_size(w, h, 0, s)) return -1; if(s->internal_buffer==NULL){ @@ -487,7 +487,7 @@ #define SANE_NB_CHANNELS 128U if (((avctx->coded_width || avctx->coded_height) - && avcodec_check_dimensions(avctx, avctx->coded_width, avctx->coded_height)) + && av_check_image_size(avctx->coded_width, avctx->coded_height, 0, avctx)) || avctx->channels > SANE_NB_CHANNELS) { ret = AVERROR(EINVAL); goto free_and_end; @@ -554,7 +554,7 @@ av_log(avctx, AV_LOG_ERROR, "buffer smaller than minimum size\n"); return -1; } - if(avcodec_check_dimensions(avctx,avctx->width,avctx->height)) + if(av_check_image_size(avctx->width, avctx->height, 0, avctx)) return -1; if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){ int ret = avctx->codec->encode(avctx, buf, buf_size, pict); @@ -604,7 +604,7 @@ int ret; *got_picture_ptr= 0; - if((avctx->coded_width||avctx->coded_height) && avcodec_check_dimensions(avctx,avctx->coded_width,avctx->coded_height)) + if((avctx->coded_width||avctx->coded_height) && av_check_image_size(avctx->coded_width, avctx->coded_height, 0, avctx)) return -1; if((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size){ ret = avctx->codec->decode(avctx, picture, got_picture_ptr, diff -r 5dffb531b1cc -r 914f484bb476 vp3.c --- a/vp3.c Fri Aug 06 09:36:45 2010 +0000 +++ b/vp3.c Fri Aug 06 09:37:04 2010 +0000 @@ -33,6 +33,7 @@ #include #include +#include "libavcore/imgutils.h" #include "avcodec.h" #include "dsputil.h" #include "get_bits.h" @@ -1980,7 +1981,7 @@ visible_width = s->width = get_bits(gb, 16) << 4; visible_height = s->height = get_bits(gb, 16) << 4; - if(avcodec_check_dimensions(avctx, s->width, s->height)){ + if(av_check_image_size(s->width, s->height, 0, avctx)){ av_log(avctx, AV_LOG_ERROR, "Invalid dimensions (%dx%d)\n", s->width, s->height); s->width= s->height= 0; return -1; diff -r 5dffb531b1cc -r 914f484bb476 vp8.c --- a/vp8.c Fri Aug 06 09:36:45 2010 +0000 +++ b/vp8.c Fri Aug 06 09:37:04 2010 +0000 @@ -22,6 +22,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "vp56.h" #include "vp8data.h" @@ -224,7 +225,7 @@ static int update_dimensions(VP8Context *s, int width, int height) { - if (avcodec_check_dimensions(s->avctx, width, height)) + if (av_check_image_size(width, height, 0, s->avctx)) return AVERROR_INVALIDDATA; vp8_decode_flush(s->avctx); diff -r 5dffb531b1cc -r 914f484bb476 vqavideo.c --- a/vqavideo.c Fri Aug 06 09:36:45 2010 +0000 +++ b/vqavideo.c Fri Aug 06 09:37:04 2010 +0000 @@ -68,6 +68,7 @@ #include #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #define PALETTE_COUNT 256 @@ -147,7 +148,7 @@ s->vqa_version = vqa_header[0]; s->width = AV_RL16(&vqa_header[6]); s->height = AV_RL16(&vqa_header[8]); - if(avcodec_check_dimensions(avctx, s->width, s->height)){ + if(av_check_image_size(s->width, s->height, 0, avctx)){ s->width= s->height= 0; return -1; } diff -r 5dffb531b1cc -r 914f484bb476 xsubdec.c --- a/xsubdec.c Fri Aug 06 09:36:45 2010 +0000 +++ b/xsubdec.c Fri Aug 06 09:37:04 2010 +0000 @@ -18,6 +18,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavcore/imgutils.h" #include "avcodec.h" #include "get_bits.h" #include "bytestream.h" @@ -76,7 +77,7 @@ // read header w = bytestream_get_le16(&buf); h = bytestream_get_le16(&buf); - if (avcodec_check_dimensions(avctx, w, h) < 0) + if (av_check_image_size(w, h, 0, avctx) < 0) return -1; x = bytestream_get_le16(&buf); y = bytestream_get_le16(&buf); diff -r 5dffb531b1cc -r 914f484bb476 yop.c --- a/yop.c Fri Aug 06 09:36:45 2010 +0000 +++ b/yop.c Fri Aug 06 09:37:04 2010 +0000 @@ -24,6 +24,7 @@ */ #include "libavutil/intreadwrite.h" +#include "libavcore/imgutils.h" #include "avcodec.h" #include "get_bits.h" @@ -84,7 +85,7 @@ s->avctx = avctx; if (avctx->width & 1 || avctx->height & 1 || - avcodec_check_dimensions(avctx, avctx->width, avctx->height) < 0) { + av_check_image_size(avctx->width, avctx->height, 0, avctx) < 0) { av_log(avctx, AV_LOG_ERROR, "YOP has invalid dimensions\n"); return -1; }