From: Anton Khirnov Date: Wed, 21 Nov 2012 18:20:21 +0000 (+0100) Subject: eatgq: return meaningful error codes. X-Git-Tag: v10_alpha1~2481 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f337c29017b10c98ccb4dce20efced4c74b665f6;p=platform%2Fupstream%2Flibav.git eatgq: return meaningful error codes. --- diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c index 777d23a..1d1370b 100644 --- a/libavcodec/eatgq.c +++ b/libavcodec/eatgq.c @@ -189,12 +189,12 @@ static int tgq_decode_frame(AVCodecContext *avctx, const uint8_t *buf = avpkt->data; int buf_size = avpkt->size; TgqContext *s = avctx->priv_data; - int x,y; + int x, y, ret; int big_endian = AV_RL32(&buf[4]) > 0x000FFFFF; if (buf_size < 16) { av_log(avctx, AV_LOG_WARNING, "truncated header\n"); - return -1; + return AVERROR_INVALIDDATA; } bytestream2_init(&s->gb, buf + 8, buf_size - 8); if (big_endian) { @@ -217,9 +217,9 @@ static int tgq_decode_frame(AVCodecContext *avctx, s->frame.key_frame = 1; s->frame.pict_type = AV_PICTURE_TYPE_I; s->frame.buffer_hints = FF_BUFFER_HINTS_VALID; - if (ff_get_buffer(avctx, &s->frame)) { + if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) { av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); - return -1; + return ret; } }