summaryrefslogtreecommitdiff
path: root/libavcodec/eatgq.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-11-21 19:20:21 +0100
committerAnton Khirnov <anton@khirnov.net>2013-01-26 12:56:39 +0100
commitf337c29017b10c98ccb4dce20efced4c74b665f6 (patch)
tree165f4557cbfbf9250a1da6b70a615523826f9e1b /libavcodec/eatgq.c
parent4b7598e2fe077b5664c78ed664a02629a030fcb7 (diff)
eatgq: return meaningful error codes.
Diffstat (limited to 'libavcodec/eatgq.c')
-rw-r--r--libavcodec/eatgq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/eatgq.c b/libavcodec/eatgq.c
index 777d23a7a1..1d1370b422 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;
}
}