diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-21 10:26:55 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-26 12:54:35 +0100 |
commit | ade402804a0e811cd00862c90559121a793054a6 (patch) | |
tree | 202c5ce316c7f8956d20deec0411f660bdb1c56e /libavcodec/eatgv.c | |
parent | 0859eaa0122b63778a5bd9635a1e3ede07a0cd1c (diff) | |
download | ffmpeg-ade402804a0e811cd00862c90559121a793054a6.tar.gz |
eatgv: return meaningful error codes.
Diffstat (limited to 'libavcodec/eatgv.c')
-rw-r--r-- | libavcodec/eatgv.c | 20 |
1 files changed, 10 insertions, 10 deletions
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; i<num_mvs; i++) { @@ -200,7 +200,7 @@ static int tgv_decode_inter(TgvContext * s, const uint8_t *buf, const uint8_t *b if (get_bits_left(&gb) < vector_bits * (s->avctx->height/4) * (s->avctx->width/4)) - return -1; + return AVERROR_INVALIDDATA; /* read vectors and build frame */ for(y=0; y<s->avctx->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; } } |