From ade402804a0e811cd00862c90559121a793054a6 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 21 Nov 2012 10:26:55 +0100 Subject: eatgv: return meaningful error codes. --- libavcodec/eatgv.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'libavcodec/eatgv.c') diff --git a/libavcodec/eatgv.c b/libavcodec/eatgv.c index 46644abead..7a93609968 100644 --- a/libavcodec/eatgv.c +++ b/libavcodec/eatgv.c @@ -73,7 +73,7 @@ static int unpack(const uint8_t *src, const uint8_t *src_end, unsigned char *dst src += 2; if (src+3>src_end) - return -1; + return AVERROR_INVALIDDATA; size = AV_RB24(src); src += 3; @@ -146,7 +146,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b const unsigned char *blocks_raw; if(buf+12>buf_end) - return -1; + return AVERROR_INVALIDDATA; num_mvs = AV_RL16(&buf[0]); num_blocks_raw = AV_RL16(&buf[2]); @@ -175,7 +175,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b mvbits = (num_mvs*2*10+31) & ~31; if (buf+(mvbits>>3)+16*num_blocks_raw+8*num_blocks_packed>buf_end) - return -1; + return AVERROR_INVALIDDATA; init_get_bits(&gb, buf, mvbits); for (i=0; iavctx->height/4) * (s->avctx->width/4)) - return -1; + return AVERROR_INVALIDDATA; /* read vectors and build frame */ for(y=0; yavctx->height/4; y++) @@ -256,7 +256,7 @@ static int tgv_decode_frame(AVCodecContext *avctx, int buf_size = avpkt->size; TgvContext *s = avctx->priv_data; const uint8_t *buf_end = buf + buf_size; - int chunk_type; + int chunk_type, ret; chunk_type = AV_RL32(&buf[0]); buf += EA_PREAMBLE_SIZE; @@ -265,7 +265,7 @@ static int tgv_decode_frame(AVCodecContext *avctx, int pal_count, i; if(buf+12>buf_end) { av_log(avctx, AV_LOG_WARNING, "truncated header\n"); - return -1; + return AVERROR_INVALIDDATA; } s->width = AV_RL16(&buf[0]); @@ -284,8 +284,8 @@ static int tgv_decode_frame(AVCodecContext *avctx, } } - if (av_image_check_size(s->width, s->height, 0, avctx)) - return -1; + if ((ret = av_image_check_size(s->width, s->height, 0, avctx)) < 0) + return ret; /* shuffle */ FFSWAP(AVFrame, s->frame, s->last_frame); @@ -310,7 +310,7 @@ static int tgv_decode_frame(AVCodecContext *avctx, s->frame.pict_type = AV_PICTURE_TYPE_I; if (unpack(buf, buf_end, s->frame.data[0], s->avctx->width, s->avctx->height)<0) { av_log(avctx, AV_LOG_WARNING, "truncated intra frame\n"); - return -1; + return AVERROR_INVALIDDATA; } }else{ if (!s->last_frame.data[0]) { @@ -321,7 +321,7 @@ static int tgv_decode_frame(AVCodecContext *avctx, s->frame.pict_type = AV_PICTURE_TYPE_P; if (tgv_decode_inter(s, buf, buf_end)<0) { av_log(avctx, AV_LOG_WARNING, "truncated inter frame\n"); - return -1; + return AVERROR_INVALIDDATA; } } -- cgit v1.2.3