diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-11-17 17:52:52 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-01-14 11:34:53 +0100 |
commit | 6bf70127d1d49f2a8c46803eda7b893b2b479282 (patch) | |
tree | b5afea3464ba069dc4d6e9a67119785e05636808 /libavcodec/tmv.c | |
parent | 9e6764900a0732a4719ca219ceb59a4ae9d9be3b (diff) | |
download | ffmpeg-6bf70127d1d49f2a8c46803eda7b893b2b479282.tar.gz |
tmv: return meaningful error codes.
Diffstat (limited to 'libavcodec/tmv.c')
-rw-r--r-- | libavcodec/tmv.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libavcodec/tmv.c b/libavcodec/tmv.c index d4e5aa1398..29d8e15fd9 100644 --- a/libavcodec/tmv.c +++ b/libavcodec/tmv.c @@ -47,20 +47,21 @@ static int tmv_decode_frame(AVCodecContext *avctx, void *data, unsigned char_cols = avctx->width >> 3; unsigned char_rows = avctx->height >> 3; unsigned x, y, fg, bg, c; + int ret; if (tmv->pic.data[0]) avctx->release_buffer(avctx, &tmv->pic); - if (ff_get_buffer(avctx, &tmv->pic) < 0) { + if ((ret = ff_get_buffer(avctx, &tmv->pic)) < 0) { av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); - return -1; + return ret; } if (avpkt->size < 2*char_rows*char_cols) { av_log(avctx, AV_LOG_ERROR, "Input buffer too small, truncated sample?\n"); *got_frame = 0; - return -1; + return AVERROR_INVALIDDATA; } tmv->pic.pict_type = AV_PICTURE_TYPE_I; |